forked from ungleich-public/cdist
fix output, compare string with string not string with list
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
ccbd0f1d84
commit
272b8722c1
2 changed files with 5 additions and 3 deletions
|
@ -110,12 +110,12 @@ def run(argv):
|
||||||
value_old = param_fd.readlines()
|
value_old = param_fd.readlines()
|
||||||
param_fd.close()
|
param_fd.close()
|
||||||
|
|
||||||
if(value_old != value):
|
if(value_old[0] != value):
|
||||||
raise cdist.Error("Parameter + \"" + param +
|
raise cdist.Error("Parameter\"" + param +
|
||||||
"\" differs: " + " ".join(value_old) + " vs. " +
|
"\" differs: " + " ".join(value_old) + " vs. " +
|
||||||
value +
|
value +
|
||||||
"\nSource = " + " ".join(old_object_source)
|
"\nSource = " + " ".join(old_object_source)
|
||||||
+ " new =" + object_source)
|
+ " new = " + object_source)
|
||||||
else:
|
else:
|
||||||
param_fd = open(file, "w")
|
param_fd = open(file, "w")
|
||||||
param_fd.writelines(value)
|
param_fd.writelines(value)
|
||||||
|
|
2
test.py
2
test.py
|
@ -139,7 +139,9 @@ class Config(unittest.TestCase):
|
||||||
manifest_fd.close()
|
manifest_fd.close()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
print("a")
|
||||||
self.config.run_initial_manifest()
|
self.config.run_initial_manifest()
|
||||||
|
print("b")
|
||||||
except cdist.Error:
|
except cdist.Error:
|
||||||
failed = True
|
failed = True
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue