summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-09-29 07:44:17 (GMT)
committerGeorg Brandl <georg@python.org>2012-09-29 07:44:17 (GMT)
commite054f452bd9118def58c18aa295662c9845e1c89 (patch)
treee8e2140440365c21871cc83e5e53e1a7d242ba80 /Lib/test/test_sys.py
parent1628eaa5dc8892ff381ca7558cc7c8d80fac494d (diff)
downloadcpython-e054f452bd9118def58c18aa295662c9845e1c89.zip
cpython-e054f452bd9118def58c18aa295662c9845e1c89.tar.gz
cpython-e054f452bd9118def58c18aa295662c9845e1c89.tar.bz2
Fix test_sys.test_implementation for final releases.v3.3.0
Diffstat (limited to 'Lib/test/test_sys.py')
-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 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'))