From ac202639a5108d126ecea585c7e793696679dbe4 Mon Sep 17 00:00:00 2001 From: Anurag Awasthi Date: Fri, 24 Jan 2020 19:01:27 +0530 Subject: [PATCH] Incorrect param name caused global setting test to fail (#3821) --- 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 4920421adf7..c0dec787cc4 100644 --- a/test/integration/smoke/test_global_settings.py +++ b/test/integration/smoke/test_global_settings.py @@ -48,7 +48,7 @@ class TestUpdateConfigWithScope(cloudstackTestCase): 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)