Fix streaming test

pull/874/head
Julien Duponchelle 8 years ago
parent 304d92764c
commit e06be6729a
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -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…
Cancel
Save