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
This commit is contained in:
Chandan Kumar 2017-04-24 14:38:14 +05:30
parent 1d86223f8c
commit 8e8b212a44
1 changed files with 1 additions and 1 deletions

View File

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