Skip to content

Commit 3e45b1f

Browse files
[3.13] gh-117174: Adapt test_multiple_statements_fail_early to new REPL behavior (follow-up gh-131065) (GH-131836) (#131841)
gh-117174: Adapt `test_multiple_statements_fail_early` to new REPL behavior (follow-up gh-131065) (GH-131836) Adapt test to new REPL behavior (follow-up gh-117174) (cherry picked from commit a6cf827) Co-authored-by: Bartosz Sławecki <[email protected]>
1 parent de8bc17 commit 3e45b1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_pyrepl/test_interact.py

+1-1
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)