[pypy-svn] r50775 - pypy/dist/pypy/rlib/test

arigo at codespeak.net arigo at codespeak.net
Sat Jan 19 11:55:18 CET 2008


Author: arigo
Date: Sat Jan 19 11:55:17 2008
New Revision: 50775

Modified:
   pypy/dist/pypy/rlib/test/test_rjvm.py
Log:
Move the skip before the 'import jpype' which fails if this is not installed.


Modified: pypy/dist/pypy/rlib/test/test_rjvm.py
==============================================================================
--- pypy/dist/pypy/rlib/test/test_rjvm.py	(original)
+++ pypy/dist/pypy/rlib/test/test_rjvm.py	Sat Jan 19 11:55:17 2008
@@ -1,6 +1,6 @@
-from pypy.rlib.rjvm import java, JavaWrapper, JavaClassWrapper, JavaInstanceWrapper, JavaMethodWrapper, JavaStaticMethodWrapper
 import py
 py.test.skip("In Progress...")
+from pypy.rlib.rjvm import java, JavaWrapper, JavaClassWrapper, JavaInstanceWrapper, JavaMethodWrapper, JavaStaticMethodWrapper
 def test_static_method():
     assert isinstance(java.lang, JavaWrapper)
     assert isinstance(java.lang.Math, JavaClassWrapper)



More information about the Pypy-commit mailing list