8000 Rename redundant enum tests so that they run (#102535) · python/cpython@a028778 · GitHub
[go: up one dir, main page]

Skip to content

Commit a028778

Browse files
authored
Rename redundant enum tests so that they run (#102535)
1 parent d77c487 commit a028778

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Lib/test/test_enum.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4579,15 +4579,14 @@ class Double(Enum):
45794579
TWO = 2
45804580
self.assertEqual(Double.__doc__, None)
45814581

4582-
4583-
def test_doc_1( 79A3 self):
4582+
def test_doc_3(self):
45844583
class Triple(Enum):
45854584
ONE = 1
45864585
TWO = 2
45874586
THREE = 3
45884587
self.assertEqual(Triple.__doc__, None)
45894588

4590-
def test_doc_1(self):
4589+
def test_doc_4(self):
45914590
class Quadruple(Enum):
45924591
ONE = 1
45934592
TWO = 2

0 commit comments

Comments
 (0)
0