Skip to content

Commit 28fbf50

Browse files
committed
TestPyReplAutoindent.test_auto_indent_default() misses
`self.assertEqual()`
1 parent 8679c8d commit 28fbf50

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Lib/test/test_pyrepl/test_pyrepl.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,11 @@ def test_auto_indent_default(self):
452452
)
453453
# fmt: on
454454

455+
events = code_to_events(input_code)
456+
reader = self.prepare_reader(events)
457+
output = multiline_input(reader)
458+
self.assertEqual(output, output_code)
459+
455460
def test_auto_indent_continuation(self):
456461
# auto indenting according to previous user indentation
457462
# fmt: off

0 commit comments

Comments
 (0)