Pass option list instead of group name

The option list registered in config.py should be
used instead of the group name since the group name
is used as the first parameter and the second parameter
should be the option list

Change-Id: I1ef372cce5a92b267e7c7feac7e1b56cd8dfa57f
Closes-Bug: #1629573
This commit is contained in:
Nishant Kumar 2017-04-09 10:44:09 -04:00
parent c8114ee4bf
commit d0673e0575

@ -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])]