From c951054021abc55a0707bd6ae016306b6eeedda0 Mon Sep 17 00:00:00 2001 From: Chandan Kumar Date: Mon, 24 Apr 2017 16:13:49 +0530 Subject: [PATCH] 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 (cherry picked from commit 4b91b82b5c1ce0bb91736870eee50dcdb9f0bfa5) --- murano_tempest_tests/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/murano_tempest_tests/config.py b/murano_tempest_tests/config.py index 08694b126..e00cdbf1b 100644 --- a/murano_tempest_tests/config.py +++ b/murano_tempest_tests/config.py @@ -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",