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:
parent
2f03884c0c
commit
453d4d811a
@ -47,7 +47,7 @@ def get_structured_config_dict(config):
|
|||||||
if k == 'ensure' and v == 'absent':
|
if k == 'ensure' and v == 'absent':
|
||||||
d['value'] = None
|
d['value'] = None
|
||||||
if k == 'value':
|
if k == 'value':
|
||||||
d['value'] = v
|
d['value'] = str(v)
|
||||||
structured_conf[key2].append(d)
|
structured_conf[key2].append(d)
|
||||||
|
|
||||||
for key in config.keys():
|
for key in config.keys():
|
||||||
|
Loading…
Reference in New Issue
Block a user