Skip to content

Commit

Permalink
Rename redundant enum tests so that they run (python#102535)
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephSBoyle authored Mar 14, 2023
1 parent d77c487 commit a028778
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Lib/test/test_enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -4579,15 +4579,14 @@ class Double(Enum):
TWO = 2
self.assertEqual(Double.__doc__, None)


def test_doc_1(self):
def test_doc_3(self):
class Triple(Enum):
ONE = 1
TWO = 2
THREE = 3
self.assertEqual(Triple.__doc__, None)

def test_doc_1(self):
def test_doc_4(self):
class Quadruple(Enum):
ONE = 1
TWO = 2
Expand Down

0 comments on commit a028778

Please sign in to comment.