Skip to content

Commit 57389db

Browse files
authored
bpo-29514: Make magic number test work for candidates (GH-7945)
1 parent 5dc3f23 commit 57389db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎Lib/test/test_importlib/test_util.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,7 @@ class MagicNumberTests(unittest.TestCase):
763763
Test release compatibility issues relating to importlib
764764
"""
765765
@unittest.skipUnless(
766-
sys.version_info.releaselevel in ('final', 'release'),
766+
sys.version_info.releaselevel in ('candidate', 'final'),
767767
'only applies to candidate or final python release levels'
768768
)
769769
def test_magic_number(self):

0 commit comments

Comments
 (0)