Skip to content

Commit 9da23bf

Browse files
committed
Adapt test script for py3k compatibility
1 parent cdc25e8 commit 9da23bf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/check-exercises.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ def main():
6262
failures.append(name)
6363
print('')
6464
if failures:
65-
print 'FAILURES: ' + ' '.join(failures)
65+
print('FAILURES: ' + ' '.join(failures))
6666
raise SystemExit(1)
6767
else:
68-
print 'SUCCESS!'
68+
print('SUCCESS!')
6969

7070
if __name__ == '__main__':
7171
main()

0 commit comments

Comments
 (0)