Fix broken unit tests

Commit I1fcc2adf13792705fc4bb6faf757ee59faee1349 broke the MH plugin
unit tests. Since this plugin is no longer maintained - the test was removed.

Change-Id: I6fdd33e9033b29364eb3b06844e4918cd14cf20c
This commit is contained in:
Adit Sarfaty 2018-05-14 13:19:45 +03:00
parent 23e81e0141
commit 3f04bde1cd

View File

@ -1110,16 +1110,6 @@ class NeutronNsxOutOfSync(NsxPluginV2TestCase,
self.assertEqual(router['router']['status'],
constants.NET_STATUS_ERROR)
def test_delete_security_group_not_in_nsx(self):
res = self._create_security_group('json', 'name', 'desc')
sec_group = self.deserialize('json', res)
self.fc._fake_securityprofile_dict.clear()
req = self.new_delete_request(
'security-groups',
sec_group['security_group']['id'])
res = req.get_response(self.ext_api)
self.assertEqual(res.status_int, 204)
class DHCPOptsTestCase(test_dhcpopts.TestExtraDhcpOpt, NsxPluginV2TestCase):