Commit bd902f49 authored by Denis Bilenko's avatar Denis Bilenko

testrunner.py: fix syntax on py3

parent c093b89e
...@@ -159,8 +159,8 @@ def main(): ...@@ -159,8 +159,8 @@ def main():
tests = discover(args, options.ignore) tests = discover(args, options.ignore)
if options.discover: if options.discover:
for cmd, options in tests: for cmd, options in tests:
print util.getname(cmd, env=options.get('env'), setenv=options.get('setenv')) print (util.getname(cmd, env=options.get('env'), setenv=options.get('setenv')))
print '%s tests found.' % len(tests) print ('%s tests found.' % len(tests))
else: else:
run_many(tests, expected=options.expected, failfast=options.failfast) run_many(tests, expected=options.expected, failfast=options.failfast)
......
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