From ea8b38950dd3b89329f6e80fb5d5164ed3270a32 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Thu, 19 Sep 2019 15:27:58 +0100 Subject: [PATCH] nova-net: Migrate 'test_server_tags' functional tests Since we already worked on the NeutronFixture to return security groups in change Ibbee7fd11c1aa254e399d302adbae69126e98262, this now just works. Change-Id: Ia9456055bc4defaefa98cfa82484b9ce5c8792e0 Signed-off-by: Stephen Finucane --- nova/tests/functional/api_sample_tests/test_server_tags.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/nova/tests/functional/api_sample_tests/test_server_tags.py b/nova/tests/functional/api_sample_tests/test_server_tags.py index 98c1634745e5..14917661ece3 100644 --- a/nova/tests/functional/api_sample_tests/test_server_tags.py +++ b/nova/tests/functional/api_sample_tests/test_server_tags.py @@ -20,7 +20,6 @@ TAG2 = 'tag2' class ServerTagsJsonTest(test_servers.ServersSampleBase): - USE_NEUTRON = False sample_dir = 'os-server-tags' microversion = '2.26' scenarios = [('v2_26', {'api_major_version': 'v2.1'})] @@ -63,7 +62,6 @@ class ServerTagsJsonTest(test_servers.ServersSampleBase): response = self._do_get('servers/%s/tags/%s' % (uuid, TAG1)) self.assertEqual(204, response.status_code) - # TODO(stephenfin): Migrate off of nova-network def test_server_tags_show_with_details_information(self): uuid = self._put_server_tags() response = self._do_get('servers/%s' % uuid)