summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2015-09-22 14:30:55 -0700
committerJoffrey F <joffrey@docker.com>2015-09-23 11:35:57 -0700
commit48d72f670340b969d0e894cd6e368f76bd428bb8 (patch)
tree00051a3c7e1322622092960c2f4f102e07f2d5bf
parentda2b797323a4acf61062a38c7bed957c4f0b84b6 (diff)
downloaddocker-py-api_1.20_support.tar.gz
Bump default API versionapi_1.20_support
Signed-off-by: Joffrey F <joffrey@docker.com>
-rw-r--r--docker/constants.py2
-rw-r--r--tests/integration_test.py1
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)