[pypy-svn] r45419 - pypy/dist/pypy/translator/jvm/test
pdg at codespeak.net
pdg at codespeak.net
Fri Jul 27 21:53:50 CEST 2007
Author: pdg
Date: Fri Jul 27 21:53:49 2007
New Revision: 45419
Modified:
pypy/dist/pypy/translator/jvm/test/test_list.py
Log:
translator/jvm - Sorry about breaking the build, I forgot to uncomment a skipped test in the test_list file while trying to add recursive list support (pdg)
Modified: pypy/dist/pypy/translator/jvm/test/test_list.py
==============================================================================
--- pypy/dist/pypy/translator/jvm/test/test_list.py (original)
+++ pypy/dist/pypy/translator/jvm/test/test_list.py Fri Jul 27 21:53:49 2007
@@ -3,8 +3,8 @@
from pypy.rpython.test.test_rlist import BaseTestRlist
class TestJvmList(JvmTest, BaseTestRlist):
- #def test_recursive(self):
- # py.test.skip("JVM doesn't support recursive lists")
- #
+ def test_recursive(self):
+ py.test.skip("JVM doesn't support recursive lists")
+
def test_getitem_exc(self):
py.test.skip('fixme!')
More information about the Pypy-commit
mailing list