mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
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
1 changed files with 2 additions and 3 deletions
|
@ -4500,15 +4500,14 @@ class MiscTestCase(unittest.TestCase):
|
|||
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…
Add table
Add a link
Reference in a new issue