diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2025-05-25 18:43:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-25 18:43:07 (GMT) |
commit | 6917fbf98f6fd7946ed92e7d6daa5a7ecb50167c (patch) | |
tree | 8ba4c239e5589cc582fe85a6ee451d8aaadca062 | |
parent | 9c6d2dbe26e30114773bf55147d36960cb89e519 (diff) | |
download | cpython-6917fbf98f6fd7946ed92e7d6daa5a7ecb50167c.zip cpython-6917fbf98f6fd7946ed92e7d6daa5a7ecb50167c.tar.gz cpython-6917fbf98f6fd7946ed92e7d6daa5a7ecb50167c.tar.bz2 |
[3.14] GH-130328: Fix WindowsConsoleGetEventTests after gh-133728 (gh-134660) (gh-134666)
(cherry picked from commit 1000283694136ee0538baa6c6b2eee662ee618d4)
Co-authored-by: Chris Eibl <138194463+chris-eibl@users.noreply.github.com>
-rw-r--r-- | Lib/test/test_pyrepl/test_windows_console.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_pyrepl/test_windows_console.py b/Lib/test/test_pyrepl/test_windows_console.py index a52ae96..f9607e0 100644 --- a/Lib/test/test_pyrepl/test_windows_console.py +++ b/Lib/test/test_pyrepl/test_windows_console.py @@ -386,6 +386,7 @@ class WindowsConsoleGetEventTests(TestCase): self.console._read_input = self.mock self.console._WindowsConsole__vt_support = kwargs.get("vt_support", False) + self.console.wait = MagicMock(return_value=True) event = self.console.get_event(block=False) return event |