mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 14:13:15 +08:00
Fix SyntaxError with print
This commit is contained in:
parent
87c27a074d
commit
69e19b88c2
@ -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()))
|
||||
|
Loading…
Reference in New Issue
Block a user