mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
Fix streaming test
This commit is contained in:
parent
304d92764c
commit
e06be6729a
@ -289,7 +289,7 @@ def test_streamFile(project, async_run, compute):
|
||||
response.status = 200
|
||||
with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock:
|
||||
async_run(compute.stream_file(project, "test/titi"))
|
||||
mock.assert_called_with("GET", "https://example.com:84/v2/compute/projects/{}/stream/test/titi".format(project.id), auth=None)
|
||||
mock.assert_called_with("GET", "https://example.com:84/v2/compute/projects/{}/stream/test/titi".format(project.id), auth=None, timeout=None)
|
||||
|
||||
|
||||
def test_downloadFile(project, async_run, compute):
|
||||
|
Loading…
Reference in New Issue
Block a user