summaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2019-01-09 11:14:08 -0800
committerJoffrey F <joffrey@docker.com>2019-01-09 11:18:40 -0800
commit72f4f527ad60b2a677b883dc54669ebe98f0879f (patch)
tree403923054d1b5242366c7385e62ed257e39b9bb6 /tests/integration
parent5fc7f62ec478e98c9230fe6e0f9a1e1146e4e904 (diff)
downloaddocker-py-fix_test_deps.tar.gz
Update test dependencies to latest version, fix some flake8 errorsfix_test_deps
Signed-off-by: Joffrey F <joffrey@docker.com>
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/api_client_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/api_client_test.py b/tests/integration/api_client_test.py
index 905e064..9e348f3 100644
--- a/tests/integration/api_client_test.py
+++ b/tests/integration/api_client_test.py
@@ -47,7 +47,7 @@ class ConnectionTimeoutTest(unittest.TestCase):
# This call isn't supposed to complete, and it should fail fast.
try:
res = self.client.inspect_container('id')
- except:
+ except: # noqa: E722
pass
end = time.time()
assert res is None