From e054f452bd9118def58c18aa295662c9845e1c89 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 29 Sep 2012 09:44:17 +0200 Subject: Fix test_sys.test_implementation for final releases. --- Lib/test/test_sys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 2920a29..6e0c6ee 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -585,7 +585,7 @@ class SysModuleTest(unittest.TestCase): def test_implementation(self): # This test applies to all implementations equally. - levels = {'alpha': 0xA, 'beta': 0xB, 'candidate': 0xC, 'release': 0xF} + levels = {'alpha': 0xA, 'beta': 0xB, 'candidate': 0xC, 'final': 0xF} self.assertTrue(hasattr(sys.implementation, 'name')) self.assertTrue(hasattr(sys.implementation, 'version')) -- cgit v0.12