[pypy-commit] pypy default: Fix test

arigo noreply at buildbot.pypy.org
Tue Apr 15 11:47:57 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r70635:f0dfe097735a
Date: 2014-04-15 11:47 +0200
http://bitbucket.org/pypy/pypy/changeset/f0dfe097735a/

Log:	Fix test

diff --git a/pypy/config/test/test_pypyoption.py b/pypy/config/test/test_pypyoption.py
--- a/pypy/config/test/test_pypyoption.py
+++ b/pypy/config/test/test_pypyoption.py
@@ -12,9 +12,9 @@
     assert conf.objspace.usemodules.gc
 
     conf.objspace.std.withmapdict = True
-    assert conf.objspace.std.withmethodcache
+    assert conf.objspace.std.withtypeversion
     conf = get_pypy_config()
-    conf.objspace.std.withmethodcache = False
+    conf.objspace.std.withtypeversion = False
     py.test.raises(ConfigError, "conf.objspace.std.withmapdict = True")
 
 def test_conflicting_gcrootfinder():


More information about the pypy-commit mailing list