Fix missing print()
This commit is contained in:
parent
701d5fc727
commit
72df32f1fd
|
@ -97,7 +97,7 @@ that performs some output related checks:
|
||||||
out, err = capsys.readouterr()
|
out, err = capsys.readouterr()
|
||||||
assert out == "hello\n"
|
assert out == "hello\n"
|
||||||
assert err == "world\n"
|
assert err == "world\n"
|
||||||
print "next"
|
print ("next")
|
||||||
out, err = capsys.readouterr()
|
out, err = capsys.readouterr()
|
||||||
assert out == "next\n"
|
assert out == "next\n"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue