8000 gh-117174: Adapt `test_multiple_statements_fail_early` to new REPL be… · seehwan/cpython@508d093 · GitHub
[go: up one dir, main page]

Skip to content

Commit 508d093

Browse files
bswckseehwan80
authored andcommitted
pythongh-117174: Adapt test_multiple_statements_fail_early to new REPL behavior (follow-up pythongh-131065) (python#131836)
Adapt test to new REPL behavior (follow-up pythongh-117174)
1 parent f5e13ba commit 508d093

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')
61+
print('spam', 'eggs', sep='&')
6262
""")
6363
f = io.StringIO()
6464
with contextlib.redirect_stderr(f):

0 commit comments

Comments
 (0)
0