[pypy-commit] pypy py3k: The test was wrong...

rguillebert noreply at buildbot.pypy.org
Sun Jan 22 12:06:39 CET 2012


Author: Romain Guillebert <romain.py at gmail.com>
Branch: py3k
Changeset: r51636:0b136e560f89
Date: 2012-01-22 12:05 +0100
http://bitbucket.org/pypy/pypy/changeset/0b136e560f89/

Log:	The test was wrong...

diff --git a/pypy/interpreter/test/test_interpreter.py b/pypy/interpreter/test/test_interpreter.py
--- a/pypy/interpreter/test/test_interpreter.py
+++ b/pypy/interpreter/test/test_interpreter.py
@@ -251,7 +251,7 @@
         code = """ def f(a, b, *, c, d):
             return a, b, c, d
         """
-        assert self.codetest(code, "f", [1, 2], {"d" : 3, "c" : 4}) == (1, 2, 3, 4)
+        assert self.codetest(code, "f", [1, 2], {"d" : 4, "c" : 3}) == (1, 2, 3, 4)
 
 
 


More information about the pypy-commit mailing list