[pypy-commit] pypy kill-faking: fix some of the md5 tests

alex_gaynor noreply at buildbot.pypy.org
Sun Dec 2 23:52:00 CET 2012


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: kill-faking
Changeset: r59246:1672d40d225c
Date: 2012-12-02 14:24 -0800
http://bitbucket.org/pypy/pypy/changeset/1672d40d225c/

Log:	fix some of the md5 tests

diff --git a/pypy/module/_md5/test/test_md5.py b/pypy/module/_md5/test/test_md5.py
--- a/pypy/module/_md5/test/test_md5.py
+++ b/pypy/module/_md5/test/test_md5.py
@@ -4,7 +4,9 @@
 
 
 class AppTestMD5(object):
-    spaceconfig = dict(usemodules=['_md5'])
+    spaceconfig = {
+        "usemodules": ['_md5', 'rctime'],
+    }
 
     def setup_class(cls):
         cls.w_md5 = cls.space.appexec([], """():


More information about the pypy-commit mailing list