From 6caf38206cf43f137730ec13b41b6b827534992e Mon Sep 17 00:00:00 2001 From: grossmj Date: Thu, 7 Jun 2018 22:37:29 +0700 Subject: [PATCH] Fix tests. --- tests/controller/test_compute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/controller/test_compute.py b/tests/controller/test_compute.py index b39ff9ad..2bbd3d9f 100644 --- a/tests/controller/test_compute.py +++ b/tests/controller/test_compute.py @@ -380,7 +380,7 @@ def test_list_files(project, async_run, compute): response.status = 200 with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock: assert async_run(compute.list_files(project)) == res - mock.assert_any_call("GET", "https://example.com:84/v2/compute/projects/{}/files".format(project.id), auth=None, chunked=None, data=None, headers={'content-type': 'application/json'}, timeout=120) + mock.assert_any_call("GET", "https://example.com:84/v2/compute/projects/{}/files".format(project.id), auth=None, chunked=None, data=None, headers={'content-type': 'application/json'}, timeout=None) def test_interfaces(project, async_run, compute):