Author: Matti Picus <[email protected]>
Branch: issue2996
Changeset: r96474:dd163eb782ad
Date: 2019-04-14 10:54 +0300
http://bitbucket.org/pypy/pypy/changeset/dd163eb782ad/

Log:    make second new test fail too

diff --git a/pypy/objspace/std/test/test_callmethod.py 
b/pypy/objspace/std/test/test_callmethod.py
--- a/pypy/objspace/std/test/test_callmethod.py
+++ b/pypy/objspace/std/test/test_callmethod.py
@@ -37,9 +37,9 @@
             class Foo:
                 def meth(*args, a=2, b=3):
                     return args, a, b
-            ret = Foo().meth(**{})
+            ret = Foo().meth(**{'a':4})
             assert type(ret[0][0]) is Foo
-            assert ret[1] == 2
+            assert ret[1] == 4
             assert ret[2] == 3
         """)
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to