[pypy-commit] pypy default: array.py is no longer in lib_pypy, update the test

antocuni noreply at buildbot.pypy.org
Thu Mar 22 17:31:57 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r53908:a36850c80a60
Date: 2012-03-22 16:15 +0100
http://bitbucket.org/pypy/pypy/changeset/a36850c80a60/

Log:	array.py is no longer in lib_pypy, update the test

diff --git a/pypy/interpreter/test/test_objspace.py b/pypy/interpreter/test/test_objspace.py
--- a/pypy/interpreter/test/test_objspace.py
+++ b/pypy/interpreter/test/test_objspace.py
@@ -312,8 +312,8 @@
             mods = space.get_builtinmodule_to_install()
             
             assert '__pypy__' in mods                # real builtin
-            assert 'array' not in mods               # in lib_pypy
-            assert 'faked+array' not in mods         # in lib_pypy
+            assert '_functools' not in mods               # in lib_pypy
+            assert 'faked+_functools' not in mods         # in lib_pypy
             assert 'this_doesnt_exist' not in mods   # not in lib_pypy
             assert 'faked+this_doesnt_exist' in mods # not in lib_pypy, but in
                                                      # ALL_BUILTIN_MODULES


More information about the pypy-commit mailing list