From cf80214fb47b7301ec485e57940b7d235bda1642 Mon Sep 17 00:00:00 2001 From: Adit Sarfaty Date: Thu, 8 Mar 2018 08:45:55 +0200 Subject: [PATCH] Fix broken unit tests Commit I5867f77fc5aedc169b42f50def0424ff209c164c added new security groups tests which the MH plugin does not support. Change-Id: I574f73b77f900e9650f47f806b6928f02883c76a --- vmware_nsx/tests/unit/nsx_mh/test_plugin.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vmware_nsx/tests/unit/nsx_mh/test_plugin.py b/vmware_nsx/tests/unit/nsx_mh/test_plugin.py index 2c4ca6887d..34edca498a 100644 --- a/vmware_nsx/tests/unit/nsx_mh/test_plugin.py +++ b/vmware_nsx/tests/unit/nsx_mh/test_plugin.py @@ -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):