mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-29514: Make magic number test work for candidates
This commit is contained in:
parent
4e21100fa7
commit
e7d3cccd8e
1 changed files with 1 additions and 1 deletions
|
@ -842,7 +842,7 @@ class MagicNumberTests(unittest.TestCase):
|
|||
Test release compatibility issues relating to importlib
|
||||
"""
|
||||
@unittest.skipUnless(
|
||||
sys.version_info.releaselevel in ('final', 'release'),
|
||||
sys.version_info.releaselevel in ('candidate', 'final'),
|
||||
'only applies to candidate or final python release levels'
|
||||
)
|
||||
def test_magic_number(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue