From b91c85ece4411855115a9b466a3c7dcc9050784c Mon Sep 17 00:00:00 2001 From: Gary Kotton Date: Wed, 27 Jan 2016 13:07:33 -0800 Subject: [PATCH] NSX|V: fix broken unit tests Commit 0e5c3fa44d72fef56346d1cdd2426aa6fe3a3475 broke the plugin Change-Id: Ib4002535820ee54a54b5ae48d1f6fbb8eac33205 --- vmware_nsx/tests/unit/nsx_v/test_plugin.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vmware_nsx/tests/unit/nsx_v/test_plugin.py b/vmware_nsx/tests/unit/nsx_v/test_plugin.py index 45917da3fd..9f04c9554b 100644 --- a/vmware_nsx/tests/unit/nsx_v/test_plugin.py +++ b/vmware_nsx/tests/unit/nsx_v/test_plugin.py @@ -1478,6 +1478,9 @@ class L3NatTest(test_l3_plugin.L3BaseForIntTests, NsxVPluginV2TestCase): {'network_id': network_id, 'enable_snat': enable_snat}}}) + def test_floatingip_association_on_unowned_router(self): + self.skipTest("Currently no support in plugin for this") + class L3NatTestCaseBase(test_l3_plugin.L3NatTestCaseMixin):