From f94fae3aa88ec968575cfd3aaebee97d3c954356 Mon Sep 17 00:00:00 2001 From: Joffrey F Date: Mon, 2 Oct 2017 12:24:17 -0700 Subject: [PATCH] Remove superfluous version validation Signed-off-by: Joffrey F --- tests/integration/api_client_test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/integration/api_client_test.py b/tests/integration/api_client_test.py index cc641582..cfb45a3e 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()