Commit 91391323 authored by Denis Bilenko's avatar Denis Bilenko

testrunner.py: fix typo in status message

parent 8705629e
...@@ -553,7 +553,7 @@ def print_stats(options): ...@@ -553,7 +553,7 @@ def print_stats(options):
if timedout: if timedout:
log('TIMEOUTS: ') log('TIMEOUTS: ')
log(' - ' + '\n - '.join(timedout)) log(' - ' + '\n - '.join(timedout))
log('%s testcases passed; %s failed; %s timed out', total, len(failed), len(timedout)) log('%s testcases total; %s failed; %s timed out', total, len(failed), len(timedout))
if failed or timedout: if failed or timedout:
return True return True
return False return False
......
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