summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-09-29 09:44:17 +0200
committerGeorg Brandl <georg@python.org>2012-09-29 09:44:17 +0200
commite7f6e3bd76f23b6be5c4bbb42e5c368f76050531 (patch)
treeb2762eaa9298aa420579af269a5e5436e6296bfd
parentbdc16b95229c662c52405ced22c15eefb45f3541 (diff)
downloadcpython-e7f6e3bd76f23b6be5c4bbb42e5c368f76050531.tar.gz
Fix test_sys.test_implementation for final releases.v3.3.0
-rw-r--r--Lib/test/test_sys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index 2920a2935f..6e0c6eef31 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'))