Commit 69e19b88 authored by John Hany's avatar John Hany Committed by GitHub

Fix SyntaxError with print

parent 87c27a07
......@@ -157,8 +157,8 @@ if __name__ == '__main__':
parser.parse(x)
funcs = parser.get_not_tested()
if funcs:
print "NOT TESTED methods:\n\t", "\n\t".join(sorted(funcs))
print "Total methods found: %i (%i)" % parser.get_funcs_count()
print "Not tested methods found:", len(funcs)
print "Total tests found:", parser.get_tests_count()
print "Empty test stubs found:", parser.get_empty_stubs_count()
print ('{} {}'.format("NOT TESTED methods:\n\t", "\n\t".join(sorted(funcs))))
print ("Total methods found: %i (%i)" % parser.get_funcs_count())
print ('{} {}'.format("Not tested methods found:", len(funcs)))
print ('{} {}'.format("Total tests found:", parser.get_tests_count()))
print ('{} {}'.format("Empty test stubs found:", parser.get_empty_stubs_count()))
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