Commit 789fa9ed authored by Rafael Monnerat's avatar Rafael Monnerat

check_parameter: Fix template.

parent 4e365059
......@@ -9,10 +9,10 @@ expected = "%(expected-value)s"
not_expected = "%(expected-not-value)s"
if expected != "" and value != expected:
print "FAIL: %s != %s" % (value, expected)
print "FAIL: %%s != %%s" %% (value, expected)
sys.exit(127)
if not_expected != "" and value == not_expected:
print "FAIL: %s == %s" % (value, not_expected)
print "FAIL: %%s == %%s" %% (value, not_expected)
sys.exit(127)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment