Fix missing print()

This commit is contained in:
Bruno Oliveira 2016-08-03 17:34:55 -03:00
parent 701d5fc727
commit 72df32f1fd
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ that performs some output related checks:
out, err = capsys.readouterr()
assert out == "hello\n"
assert err == "world\n"
print "next"
print ("next")
out, err = capsys.readouterr()
assert out == "next\n"