From 8e8b212a4416a6c2206389a3c77478ba2634869b Mon Sep 17 00:00:00 2001 From: Chandan Kumar Date: Mon, 24 Apr 2017 14:38:14 +0530 Subject: [PATCH] Fixed the name of group options in get_opts_lists * get_opts_lists in tempest plugin takes group name and config options but in vitrage tempest plugin under get_opts_lists method in config.py, service_name group params was passed which leds to OptGroup error while doing tempest init. Closes-bug: #1685749 Change-Id: Ib8fdbb68ec0f53c4a03b9be8e392385636a75d49 --- vitrage_tempest_tests/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vitrage_tempest_tests/plugin.py b/vitrage_tempest_tests/plugin.py index abb3274a0..ba526a51f 100644 --- a/vitrage_tempest_tests/plugin.py +++ b/vitrage_tempest_tests/plugin.py @@ -39,5 +39,5 @@ class VitrageTempestPlugin(plugins.TempestPlugin): def get_opt_lists(self): return [(config_rca_service.rca_service_group.name, - config_rca_service.rca_service_group), + config_rca_service.RcaServiceGroup), ('service_available', [config_rca_service.service_option])]