Author: Romain Guillebert <romain...@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)
 
 
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to