Fix broken unit tests

Commit 35aefdb54d58c786b26b10e1d0c550f7149e23fb broke the unit tests.

These new tests are skipped.

Change-Id: I5ac343bb3ef0c0b09254dcd0f078ddb7a3aab954
This commit is contained in:
Gary Kotton 2016-06-05 00:59:38 -07:00 committed by Kobi Samoray
parent 1fb08a7555
commit 0f8acc0c4b
2 changed files with 12 additions and 0 deletions

View File

@ -898,6 +898,12 @@ class TestL3NatTestCase(L3NatTest,
def test_metadata_network_with_update_subnet_dhcp_disable(self):
self.skipTest('not supported')
def test_floatingip_via_router_interface_returns_404(self):
self.skipTest('not supported')
def test_floatingip_via_router_interface_returns_201(self):
self.skipTest('not supported')
class ExtGwModeTestCase(NsxPluginV2TestCase,
test_ext_gw_mode.ExtGwModeIntTestCase):

View File

@ -2398,6 +2398,12 @@ class L3NatTestCaseBase(test_l3_plugin.L3NatTestCaseMixin):
def test_router_update_gateway_upon_subnet_create_max_ips_ipv6(self):
self.skipTest('No DHCP v6 Support yet')
def test_floatingip_via_router_interface_returns_201(self):
self.skipTest('not supported')
def test_floatingip_via_router_interface_returns_404(self):
self.skipTest('not supported')
class IPv6ExpectedFailuresTestMixin(object):