diff options
author | Koudai Aono <koxudaxi@gmail.com> | 2024-05-21 19:22:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-21 23:22:21 +0000 |
commit | 506b1a3ff66a41c72d205c8e4cba574e439d8e76 (patch) | |
tree | 6671ffb786f3b6104c58d20c2ff2174306f204fb /Lib/test/test_pyrepl/test_unix_eventqueue.py | |
parent | a3e4fec8734a304d654e4ae24a4aa2f41a7b0640 (diff) | |
download | cpython-506b1a3ff66a41c72d205c8e4cba574e439d8e76.tar.gz cpython-506b1a3ff66a41c72d205c8e4cba574e439d8e76.zip |
gh-119205: Fix autocompletion bug in new repl (#119229)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Lib/test/test_pyrepl/test_unix_eventqueue.py')
-rw-r--r-- | Lib/test/test_pyrepl/test_unix_eventqueue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pyrepl/test_unix_eventqueue.py b/Lib/test/test_pyrepl/test_unix_eventqueue.py index be2bc00e569..c06536b4a86 100644 --- a/Lib/test/test_pyrepl/test_unix_eventqueue.py +++ b/Lib/test/test_pyrepl/test_unix_eventqueue.py @@ -7,7 +7,7 @@ from _pyrepl.unix_eventqueue import EventQueue @patch("_pyrepl.curses.tigetstr", lambda x: b"") -class TestUnivEventQueue(unittest.TestCase): +class TestUnixEventQueue(unittest.TestCase): def setUp(self): self.file = tempfile.TemporaryFile() |