Rename redundant enum tests so that they run (GH-102535)

(cherry picked from commit a028778d4c)

Co-authored-by: JosephSBoyle <48555120+JosephSBoyle@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2023-03-14 15:46:01 -07:00 committed by GitHub
parent 738dde303b
commit 1649f3e591
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -4500,15 +4500,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