From: Henry Gessau Date: Tue, 17 Feb 2015 01:34:29 +0000 (-0500) Subject: Fix the api job X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=7d6b793f2545c56e97805dfd87d3d53371ec8a29;p=openstack-build%2Fneutron-build.git Fix the api job The api tests were out sync with tempest. XML support has been dropped so JSON no longer needs to be specified. Change-Id: I040cc4dbca4e9706309495ac78e0492d74e0bf62 --- diff --git a/neutron/tests/api/test_v2_rest.py b/neutron/tests/api/test_v2_rest.py index 6cfa0a248..a246b200c 100644 --- a/neutron/tests/api/test_v2_rest.py +++ b/neutron/tests/api/test_v2_rest.py @@ -34,7 +34,7 @@ class TempestRestClient(base_v2.BaseNeutronClient): @property def client(self): if not hasattr(self, '_client'): - manager = t_test.BaseTestCase.get_client_manager(interface='json') + manager = t_test.BaseTestCase.get_client_manager() self._client = manager.network_client return self._client