[pypy-commit] pypy kill-faking: fix _lsprof tests

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


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

Log:	fix _lsprof tests

diff --git a/pypy/module/_lsprof/test/test_cprofile.py b/pypy/module/_lsprof/test/test_cprofile.py
--- a/pypy/module/_lsprof/test/test_cprofile.py
+++ b/pypy/module/_lsprof/test/test_cprofile.py
@@ -1,5 +1,7 @@
 class AppTestCProfile(object):
-    spaceconfig = dict(usemodules=('_lsprof',))
+    spaceconfig = {
+        "usemodules": ['_lsprof', 'rctime'],
+    }
 
     def setup_class(cls):
         cls.w_expected_output = cls.space.wrap(expected_output)


More information about the pypy-commit mailing list