diff options
author | Joffrey F <joffrey@docker.com> | 2017-10-02 12:24:17 -0700 |
---|---|---|
committer | Joffrey F <joffrey@docker.com> | 2017-10-02 12:24:17 -0700 |
commit | 8dbc36f39c05a011d3d743fd8e68fe84f6fd95fa (patch) | |
tree | e5a16b3c86e67b4b9c55f09379019cfee665d9d8 /tests | |
parent | 2671d87843e9b8a60ef51c2f60c4f70f13d083f1 (diff) | |
download | docker-py-moby33455-testfix.tar.gz |
Remove superfluous version validationmoby33455-testfix
Signed-off-by: Joffrey F <joffrey@docker.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/integration/api_client_test.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/integration/api_client_test.py b/tests/integration/api_client_test.py index cc64158..cfb45a3 100644 --- a/tests/integration/api_client_test.py +++ b/tests/integration/api_client_test.py @@ -16,7 +16,6 @@ class InformationTest(BaseAPIIntegrationTest): res = self.client.version() self.assertIn('GoVersion', res) self.assertIn('Version', res) - self.assertEqual(len(res['Version'].split('.')), 3) def test_info(self): res = self.client.info() |