diff options
author | JosephSBoyle <48555120+JosephSBoyle@users.noreply.github.com> | 2023-03-14 22:16:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-14 22:16:45 (GMT) |
commit | a028778d4c813914ae1e6ef3a04bb96dbf92ace6 (patch) | |
tree | 64f2c43e0bfdac9d002b13de2d8a3947a972e506 /Lib/test/test_enum.py | |
parent | d77c48740f5cd17597693bd0d27e32db725fa3a0 (diff) | |
download | cpython-a028778d4c813914ae1e6ef3a04bb96dbf92ace6.zip cpython-a028778d4c813914ae1e6ef3a04bb96dbf92ace6.tar.gz cpython-a028778d4c813914ae1e6ef3a04bb96dbf92ace6.tar.bz2 |
Rename redundant enum tests so that they run (#102535)
Diffstat (limited to 'Lib/test/test_enum.py')
-rw-r--r-- | Lib/test/test_enum.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/test/test_enum.py b/Lib/test/test_enum.py index 2b14590..a11bb44 100644 --- a/Lib/test/test_enum.py +++ b/Lib/test/test_enum.py @@ -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 |