Skip to content

Commit 1eaeca3

Browse files
Rename tests along Chris Eibl suggestions
1 parent aa56581 commit 1eaeca3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_pyrepl/test_eventqueue.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def test_push_unicode_character_as_str(self):
130130
with self.assertRaises(AssertionError):
131131
eq.push("ñ")
132132

133-
def test_push_unicode_character_as_bytes(self):
133+
def test_push_unicode_character_two_bytes(self):
134134
eq = self.make_eventqueue()
135135
eq.keymap = {}
136136

@@ -146,7 +146,7 @@ def test_push_unicode_character_as_bytes(self):
146146
self.assertEqual(e.evt, "key")
147147
self.assertEqual(e.data, "ч")
148148

149-
def test_push_unicode_character_as_bytes_in_paste_mode(self):
149+
def test_push_unicode_character_two_bytes_in_paste_mode(self):
150150
eq = self.make_eventqueue()
151151
eq.keymap = {}
152152

0 commit comments

Comments
 (0)