[pypy-commit] pypy builtin-module: Fix. Obscure, I guess it is some combination of factors that

arigo noreply at buildbot.pypy.org
Sun Dec 4 13:24:46 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: builtin-module
Changeset: r50118:99f3326949de
Date: 2011-12-04 11:30 +0100
http://bitbucket.org/pypy/pypy/changeset/99f3326949de/

Log:	Fix. Obscure, I guess it is some combination of factors that used
	to get us the faked array module here...

diff --git a/pypy/module/_hashlib/test/test_hashlib.py b/pypy/module/_hashlib/test/test_hashlib.py
--- a/pypy/module/_hashlib/test/test_hashlib.py
+++ b/pypy/module/_hashlib/test/test_hashlib.py
@@ -3,7 +3,7 @@
 
 class AppTestHashlib:
     def setup_class(cls):
-        cls.space = gettestobjspace(usemodules=['_hashlib'])
+        cls.space = gettestobjspace(usemodules=['_hashlib', 'array'])
 
     def test_simple(self):
         import _hashlib


More information about the pypy-commit mailing list