diff options
author | Joffrey F <joffrey@docker.com> | 2017-02-23 17:31:45 -0800 |
---|---|---|
committer | Joffrey F <joffrey@docker.com> | 2017-03-01 13:52:07 -0800 |
commit | 4273d3f63d84523c983927742960c71cc2812806 (patch) | |
tree | 9310c00bf4d82b190fd7d0fa308d50af899b2e7b /tests | |
parent | f387ae46d74e99334cc45ca085294ddba8c814f6 (diff) | |
download | docker-py-4273d3f63d84523c983927742960c71cc2812806.tar.gz |
Bump default API version to 1.26
Signed-off-by: Joffrey F <joffrey@docker.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/integration/api_client_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/api_client_test.py b/tests/integration/api_client_test.py index 02bb435..1fef783 100644 --- a/tests/integration/api_client_test.py +++ b/tests/integration/api_client_test.py @@ -150,7 +150,7 @@ class UnixconnTest(unittest.TestCase): with warnings.catch_warnings(record=True) as w: warnings.simplefilter('always') - client = docker.APIClient(**kwargs_from_env()) + client = docker.APIClient(version='auto', **kwargs_from_env()) client.images() client.close() del client |