[pypy-commit] pypy default: Fix more tests for missing 'itertools'.

arigo noreply at buildbot.pypy.org
Mon Oct 29 11:07:19 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r58563:7c0e54a3362d
Date: 2012-10-29 10:58 +0100
http://bitbucket.org/pypy/pypy/changeset/7c0e54a3362d/

Log:	Fix more tests for missing 'itertools'.

diff --git a/pypy/module/math/test/test_math.py b/pypy/module/math/test/test_math.py
--- a/pypy/module/math/test/test_math.py
+++ b/pypy/module/math/test/test_math.py
@@ -6,7 +6,7 @@
 
 class AppTestMath:
     def setup_class(cls):
-        cls.space = gettestobjspace(usemodules=['math', 'struct'])
+        cls.space = gettestobjspace(usemodules=['math', 'struct', 'itertools'])
         cls.w_cases = cls.space.wrap(test_direct.MathTests.TESTCASES)
         cls.w_consistent_host = cls.space.wrap(test_direct.consistent_host)
 


More information about the pypy-commit mailing list