diff options
-rw-r--r-- | docker/constants.py | 2 | ||||
-rw-r--r-- | tests/integration_test.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/docker/constants.py b/docker/constants.py index 10a2fee..3647a3b 100644 --- a/docker/constants.py +++ b/docker/constants.py @@ -1,4 +1,4 @@ -DEFAULT_DOCKER_API_VERSION = '1.19' +DEFAULT_DOCKER_API_VERSION = '1.20' DEFAULT_TIMEOUT_SECONDS = 60 STREAM_HEADER_SIZE_BYTES = 8 CONTAINER_LIMITS_KEYS = [ diff --git a/tests/integration_test.py b/tests/integration_test.py index 228a2c5..763c863 100644 --- a/tests/integration_test.py +++ b/tests/integration_test.py @@ -279,7 +279,6 @@ class TestCreateContainerWithBinds(BaseTestCase): logs = logs.decode('utf-8') self.assertIn(self.filename, logs) - self.assertIn(self.filename, logs) inspect_data = self.client.inspect_container(container) self.check_container_data(inspect_data, False) |