Fix config type of run_service_broker_tests to Boolean

* As per the default value of run_service_broker_tests is Boolean
  but config type is defined as string, It needs to be fixed other
  wise tempest init will throw warning.

Change-Id: Ic0cd6d6cb7409c0bd4088c9eb3b743d44e9f7100
Closes-Bug: #1685767
This commit is contained in:
Chandan Kumar 2017-04-24 16:13:49 +05:30
parent 580b09d1d4
commit 4b91b82b5c
1 changed files with 3 additions and 3 deletions

View File

@ -83,9 +83,9 @@ ApplicationCatalogGroup = [
ServiceBrokerGroup = [
# Test runs control
cfg.StrOpt("run_service_broker_tests",
default=False,
help="Defines whether run service broker api tests or not"),
cfg.BoolOpt("run_service_broker_tests",
default=False,
help="Defines whether run service broker api tests or not"),
cfg.StrOpt("catalog_type",
default="service-broker",