From 453d4d811a96f1c3ddca8a366765010228219b85 Mon Sep 17 00:00:00 2001 From: Sergey Novikov Date: Wed, 25 May 2016 12:56:35 +0300 Subject: [PATCH] Convert all values into str type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We need to Ņonvert all values into str type for testgroup "service_reconfiguration" to exlude comparing of polytypic params. Change-Id: I155e35303b2c47d8261c43935e75385307e521b3 Closes-Bug: #1564533 (cherry picked from commit d23e7f34cee19eb7a7aeb545aa4bbac18a1816d7) --- fuelweb_test/tests/test_services_reconfiguration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuelweb_test/tests/test_services_reconfiguration.py b/fuelweb_test/tests/test_services_reconfiguration.py index f4417054d..0b6446c49 100644 --- a/fuelweb_test/tests/test_services_reconfiguration.py +++ b/fuelweb_test/tests/test_services_reconfiguration.py @@ -47,7 +47,7 @@ def get_structured_config_dict(config): if k == 'ensure' and v == 'absent': d['value'] = None if k == 'value': - d['value'] = v + d['value'] = str(v) structured_conf[key2].append(d) for key in config.keys():