[pypy-commit] pypy kill-faking: fixed _random tests

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


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: kill-faking
Changeset: r59247:3f6f4b47fa94
Date: 2012-12-02 14:27 -0800
http://bitbucket.org/pypy/pypy/changeset/3f6f4b47fa94/

Log:	fixed _random tests

diff --git a/pypy/module/_random/test/test_random.py b/pypy/module/_random/test/test_random.py
--- a/pypy/module/_random/test/test_random.py
+++ b/pypy/module/_random/test/test_random.py
@@ -1,5 +1,7 @@
 class AppTestRandom:
-    spaceconfig = dict(usemodules=['_random'])
+    spaceconfig = {
+        "usemodules": ['_random', 'rctime'],
+    }
 
     def test_dict(self):
         import _random


More information about the pypy-commit mailing list