Skip to content

Commit 4da8e3b

Browse files
committed
fix missed Event() call in test_windows_console
missed one with positional raw arg, only runs on windows so the previous test run didn't catch it
1 parent 8a2d747 commit 4da8e3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_pyrepl/test_windows_console.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ def test_enter_vt(self):
596596
def test_backspace_vt(self):
597597
ir = self.get_input_record("\x7f")
598598
self.assertEqual(self.get_event([ir], vt_support=True),
599-
Event("key", "backspace", b"\x7f"))
599+
Event("key", "backspace"))
600600
self.assertEqual(self.mock.call_count, 1)
601601

602602
def test_up_vt(self):

0 commit comments

Comments
 (0)