X Tutup
Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Rename tests along Chris Eibl suggestions
  • Loading branch information
sergey-miryanov committed Apr 27, 2025
commit 1eaeca36879ed28d97d932bf6d787ce557a1e8f0
4 changes: 2 additions & 2 deletions Lib/test/test_pyrepl/test_eventqueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def test_push_unicode_character_as_str(self):
with self.assertRaises(AssertionError):
eq.push("ñ")

def test_push_unicode_character_as_bytes(self):
def test_push_unicode_character_two_bytes(self):
eq = self.make_eventqueue()
eq.keymap = {}

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

def test_push_unicode_character_as_bytes_in_paste_mode(self):
def test_push_unicode_character_two_bytes_in_paste_mode(self):
eq = self.make_eventqueue()
eq.keymap = {}

Expand Down
Loading
X Tutup