We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa56581 commit 1eaeca3Copy full SHA for 1eaeca3
Lib/test/test_pyrepl/test_eventqueue.py
@@ -130,7 +130,7 @@ def test_push_unicode_character_as_str(self):
130
with self.assertRaises(AssertionError):
131
eq.push("ñ")
132
133
- def test_push_unicode_character_as_bytes(self):
+ def test_push_unicode_character_two_bytes(self):
134
eq = self.make_eventqueue()
135
eq.keymap = {}
136
@@ -146,7 +146,7 @@ def test_push_unicode_character_as_bytes(self):
146
self.assertEqual(e.evt, "key")
147
self.assertEqual(e.data, "ч")
148
149
- def test_push_unicode_character_as_bytes_in_paste_mode(self):
+ def test_push_unicode_character_two_bytes_in_paste_mode(self):
150
151
152
0 commit comments