validate: Minor fix for blacklisted test output formatting

This commit is contained in:
Thibault Saunier 2014-05-07 12:43:53 +02:00
parent 0b4bd7940a
commit 384686a7f7

View file

@ -288,7 +288,7 @@ def main():
msg = "Currently 'hardcoded' blacklisted tests:\n"
for name, bug in blacklisted:
options.blacklisted_tests.append(name)
msg += " + %s -- bug: %s\n" % (name, bug)
msg += " + %s \n --> bug: %s\n\n" % (name, bug)
printc(msg, Colors.FAIL, True)