mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Rename redundant enum tests so that they run (#102535)
This commit is contained in:
parent
d77c48740f
commit
a028778d4c
1 changed files with 2 additions and 3 deletions
|
@ -4579,15 +4579,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