Skip to content

Commit a504830

Browse files
JosephSBoyleFidget-Spinner
authored andcommitted
Rename redundant enum tests so that they run (python#102535)
1 parent b608a19 commit a504830

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(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)