Fix broken unit tests

Commit I5867f77fc5aedc169b42f50def0424ff209c164c added new security
groups tests which the MH plugin does not support.

Change-Id: I574f73b77f900e9650f47f806b6928f02883c76a
This commit is contained in:
Adit Sarfaty 2018-03-08 08:45:55 +02:00
parent 096a935366
commit cf80214fb4

View File

@ -450,6 +450,12 @@ class TestSecurityGroup(ext_sg.TestSecurityGroups, SecurityGroupsTestCase):
def test_create_security_group_rule_icmpv6_legacy_protocol_name(self):
self.skipTest('not supported')
def test_create_security_group_rule_protocol_as_number_range(self):
self.skipTest('not supported')
def test_create_security_group_rule_protocol_as_number_with_port(self):
self.skipTest('not supported')
class TestL3ExtensionManager(object):