Convert all values into str type

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 d23e7f34ce)
This commit is contained in:
Sergey Novikov 2016-05-25 12:56:35 +03:00
parent 2f03884c0c
commit 453d4d811a

View File

@ -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():