python: fix tests, remove intentional debug failures

This commit is contained in:
Gregory Becker
2020-03-31 16:05:52 -07:00
committed by Tamara Dahlgren
parent d53eefa69f
commit 97dc74c727
2 changed files with 11 additions and 17 deletions

View File

@@ -1692,7 +1692,7 @@ def run_test(self, exe, options=[], expected=[], status=None):
for check in expected:
cmd = ' '.join([exe] + options)
msg = "Expected '%s' in output of `%s`" % (check, cmd)
# msg += '\n%s' % output
msg += '\n\nOutput: %s' % output
assert check in output, msg
except ProcessError as err: