diff options
author | Ned Deily <nad@python.org> | 2018-06-26 23:55:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-26 23:55:07 -0400 |
commit | 57389dbaa897fadc97de78af67d5e555e28be60b (patch) | |
tree | f97d36dd804c5539ff785391abb3d808fadf4934 | |
parent | 5dc3f23b5fb0b510926012cb3732dae63cddea60 (diff) | |
download | cpython-git-57389dbaa897fadc97de78af67d5e555e28be60b.tar.gz |
bpo-29514: Make magic number test work for candidates (GH-7945)
-rw-r--r-- | Lib/test/test_importlib/test_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_importlib/test_util.py b/Lib/test/test_importlib/test_util.py index ac18e5c34b..43b158cc67 100644 --- a/Lib/test/test_importlib/test_util.py +++ b/Lib/test/test_importlib/test_util.py @@ -763,7 +763,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): |