Skip to content

Commit f79386f

Browse files
authored
bpo-29514: Make magic number test work for candidates (GH-7946)
1 parent 5430c14 commit f79386f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_import_magic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class MagicNumberTests(unittest.TestCase):
1111
Test release compatibility issues relating to precompiled bytecode
1212
"""
1313
@unittest.skipUnless(
14-
sys.version_info.releaselevel in ('final', 'release'),
14+
sys.version_info.releaselevel in ('candidate', 'final'),
1515
'only applies to candidate or final python release levels'
1616
)
1717
def test_magic_number(self):

0 commit comments

Comments
 (0)