[pypy-commit] pypy py3k: adjust per 0aea4b24a65c

pjenvey noreply at buildbot.pypy.org
Mon Apr 29 20:13:16 CEST 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r63756:c45852ae0b8c
Date: 2013-04-29 11:12 -0700
http://bitbucket.org/pypy/pypy/changeset/c45852ae0b8c/

Log:	adjust per 0aea4b24a65c

diff --git a/pypy/objspace/fake/test/test_checkmodule.py b/pypy/objspace/fake/test/test_checkmodule.py
--- a/pypy/objspace/fake/test/test_checkmodule.py
+++ b/pypy/objspace/fake/test/test_checkmodule.py
@@ -17,10 +17,10 @@
 def test_wrap_interp2app():
     see, check = make_checker()
     space = FakeObjSpace()
-    assert len(space._seen_extras) == 0
+    assert len(space._seen_extras) == 1
     assert len(check) == 0
     space.wrap(interp2app(lambda space: see()))
-    assert len(space._seen_extras) == 1
+    assert len(space._seen_extras) == 2
     assert len(check) == 0
     space.translates()
     assert len(check) == 1


More information about the pypy-commit mailing list