[pypy-commit] pypy default: Fix for e38414a7518d.

arigo noreply at buildbot.pypy.org
Fri Jul 15 13:08:58 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r45611:004a414eebdc
Date: 2011-07-15 13:05 +0200
http://bitbucket.org/pypy/pypy/changeset/004a414eebdc/

Log:	Fix for e38414a7518d.

diff --git a/pypy/module/sys/test/test_sysmodule.py b/pypy/module/sys/test/test_sysmodule.py
--- a/pypy/module/sys/test/test_sysmodule.py
+++ b/pypy/module/sys/test/test_sysmodule.py
@@ -476,7 +476,7 @@
         assert isinstance(vi[0], int)
         assert isinstance(vi[1], int)
         assert isinstance(vi[2], int)
-        assert vi[3] in ("alpha", "beta", "candidate", "final")
+        assert vi[3] in ("alpha", "beta", "candidate", "dev", "final")
         assert isinstance(vi[4], int)
 
     def test_allattributes(self):
@@ -523,4 +523,4 @@
 
         # If this ever actually becomes a compilation option this test should
         # be changed.
-        assert sys.float_repr_style == "short"
\ No newline at end of file
+        assert sys.float_repr_style == "short"


More information about the pypy-commit mailing list