Skip to content

Commit 71c4a5f

Browse files
committed
Simplify the test_multiple_statements_fail_early test
1 parent 4d4ce3d commit 71c4a5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_pyrepl/test_interact.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def test_multiple_statements_fail_early(self):
5858
console = InteractiveColoredConsole()
5959
code = dedent("""\
6060
raise Exception('foobar')
61-
print('spam', 'eggs', sep='&')
61+
print('spam&eggs')
6262
""")
6363
f = io.StringIO()
6464
with contextlib.redirect_stderr(f):

0 commit comments

Comments
 (0)