From f79386f669c22199e3ce99cfba2e5945c73beb47 Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Tue, 26 Jun 2018 23:55:36 -0400 Subject: bpo-29514: Make magic number test work for candidates (GH-7946) --- Lib/test/test_import_magic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_import_magic.py b/Lib/test/test_import_magic.py index 92f68b4..57e350e 100644 --- a/Lib/test/test_import_magic.py +++ b/Lib/test/test_import_magic.py @@ -11,7 +11,7 @@ class MagicNumberTests(unittest.TestCase): Test release compatibility issues relating to precompiled bytecode """ @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): -- cgit v0.12