From 21d0729bbbd968d7591a408352fc941adaa6bf9f Mon Sep 17 00:00:00 2001 From: Bharath bhushan patel Date: Tue, 5 Mar 2019 06:52:38 +0000 Subject: [PATCH] Changes in testcases related to Fwaasv2, the validation was failing due to wrong key fwaasv2 that fwaas_v2 in tempest.conf. Change-Id: I6bbf67437f6e98b425b15807750091a0e8c32ad9 --- vmware_nsx_tempest_plugin/tests/api/test_v2_fwaas.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vmware_nsx_tempest_plugin/tests/api/test_v2_fwaas.py b/vmware_nsx_tempest_plugin/tests/api/test_v2_fwaas.py index 905706f..3d1a1ed 100644 --- a/vmware_nsx_tempest_plugin/tests/api/test_v2_fwaas.py +++ b/vmware_nsx_tempest_plugin/tests/api/test_v2_fwaas.py @@ -35,8 +35,8 @@ class TestFwaasV2Ops(feature_manager.FeatureManager): @classmethod def skip_checks(cls): super(TestFwaasV2Ops, cls).skip_checks() - if not test.is_extension_enabled('fwaasv2', 'network'): - msg = "Extension provider-security-group is not enabled." + if not test.is_extension_enabled('fwaas_v2', 'network'): + msg = "Extension fwaas_v2 is not enabled." raise cls.skipException(msg) @classmethod @@ -186,7 +186,7 @@ class TestFwaasV2Ops(feature_manager.FeatureManager): fw_group=fw_group) return fw_topo - def create_fw_with_port_topology(self, group_delete, protocol_name): + def create_fw_with_port_topology(self, protocol_name, group_delete=True): # Create network topo network = \ self.create_topology_network(network_name="fw-network")