bpo-29514: Make magic number test work for candidates

This commit is contained in:
Ned Deily 2018-06-26 22:24:59 -04:00
parent fb17b81fc9
commit 8511b448a5
1 changed files with 1 additions and 1 deletions

View File

@ -769,7 +769,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):