Update of /cvsroot/jython/bugtests
In directory usw-pr-cvs1:/tmp/cvs-serv14145
Modified Files:
test336.py
Log Message:
Now the bug is solved, turn the warning into an error.
Index: test336.py
===================================================================
RCS file: /cvsroot/jython/bugtests/test336.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** test336.py 2001/12/03 20:13:22 1.2
--- test336.py 2001/12/21 11:25:12 1.3
***************
*** 9,14 ****
support.compileJava("classes/test336p/data/MyData.java")
! try:
! from test336p.data import MyData
! except java.lang.NoClassDefFoundError:
! raise support.TestWarning("Should not fail")
--- 9,11 ----
support.compileJava("classes/test336p/data/MyData.java")
! from test336p.data import MyData
|