From: JosephSBoyle <48555120+JosephSBoyle@users.noreply.github.com> Date: Tue, 14 Mar 2023 22:16:45 +0000 (+0000) Subject: Rename redundant enum tests so that they run (#102535) X-Git-Tag: v3.12.0a7~175 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a028778d4c813914ae1e6ef3a04bb96dbf92ace6;p=thirdparty%2FPython%2Fcpython.git Rename redundant enum tests so that they run (#102535) --- diff --git a/Lib/test/test_enum.py b/Lib/test/test_enum.py index 2b14590b2c21..a11bb441f06e 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