NSX|V: fix broken using tests

Commit 6ee91e56c84ea6e930369f8649f1d2b50096cb80 added a test that
broke the unit tests. IPv6 is currently not supported by the
plugin.

Change-Id: I323f514d0cc63938aa6362feafe2b5deab860332
This commit is contained in:
Gary Kotton 2015-11-14 10:29:14 -08:00
parent dc36d32619
commit cce2708f1c
1 changed files with 6 additions and 0 deletions

View File

@ -1180,6 +1180,9 @@ class TestSubnetsV2(NsxVPluginV2TestCase,
super(TestSubnetsV2, self).test_create_subnet_ipv6_gw_values()
self.assertEqual(ctx_manager.exception.code, 400)
def test_create_subnet_only_ip_version_v6_old(self):
self.skipTest('Currently not supported')
class TestSubnetPoolsV2(NsxVPluginV2TestCase, test_plugin.TestSubnetsV2):
def setUp(self,
@ -1273,6 +1276,9 @@ class TestSubnetPoolsV2(NsxVPluginV2TestCase, test_plugin.TestSubnetsV2):
def test_update_subnet_route_to_None(self):
self.skipTest("Skip test for not implemented host_routes feature")
def test_create_subnet_only_ip_version_v6_old(self):
self.skipTest('Currently not supported')
class TestBasicGet(test_plugin.TestBasicGet, NsxVPluginV2TestCase):
pass