From e929481763154c96e208a37a4c675f655374d6d4 Mon Sep 17 00:00:00 2001 From: Anurag Awasthi Date: Sat, 18 Jan 2020 22:43:44 +0530 Subject: [PATCH] Incorrect param name causes test to fail --- test/integration/smoke/test_global_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/smoke/test_global_settings.py b/test/integration/smoke/test_global_settings.py index 4920421adf7c..c0dec787cc4e 100644 --- a/test/integration/smoke/test_global_settings.py +++ b/test/integration/smoke/test_global_settings.py @@ -48,7 +48,7 @@ def test_UpdateConfigParamWithScope(self): self.debug("updated the parameter %s with value %s"%(updateConfigurationResponse.name, updateConfigurationResponse.value)) listConfigurationsCmd = listConfigurations.listConfigurationsCmd() - listConfigurationsCmd.cfgName = updateConfigurationResponse.name + listConfigurationsCmd.name = updateConfigurationResponse.name listConfigurationsCmd.scopename = "zone" listConfigurationsCmd.scopeid = 1 listConfigurationsResponse = self.apiClient.listConfigurations(listConfigurationsCmd)