mirror of https://github.com/python/cpython.git
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:
parent
738dde303b
commit
1649f3e591
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue