8000 bpo-46327: [Enum] remove skipped tests (GH-30512) · python/cpython@13e4659 · GitHub
[go: up one dir, main page]

Skip to content

Commit 13e4659

Browse files
authored
bpo-46327: [Enum] remove skipped tests (GH-30512)
1 parent 582286d commit 13e4659

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

Lib/test/test_enum.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4523,17 +4523,6 @@ def test_convert_complex(self):
45234523
[uncomp.COMPLEX_A, uncomp.COMPLEX_B, uncomp.COMPLEX_C],
45244524
)
45254525

4526-
@unittest.skipUnless(python_version == (3, 8),
4527-
'_convert was deprecated in 3.8')
4528-
def test_convert_warn(self):
4529-
with self.assertWarns(DeprecationWarning):
4530-
enum.IntEnum._convert(
4531-
'UnittestConvert',
4532-
MODULE,
4533-
filter=lambda x: x.startswith('CONVERT_TEST_'))
4534-
4535-
@unittest.skipUnless(python_version >= (3, 9),
4536-
'_convert was removed in 3.9')
45374526
def test_convert_raise(self):
45384527
with self.assertRaises(AttributeError):
45394528
enum.IntEnum._convert(

0 commit comments

Comments
 (0)
0