[Jython-checkins] jython: Unskip on some improvements.

frank.wierzbicki jython-checkins at python.org
Tue Mar 19 22:08:19 CET 2013


http://hg.python.org/jython/rev/56b8e3f2b82e
changeset:   7089:56b8e3f2b82e
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Tue Mar 19 14:07:38 2013 -0700
summary:
  Unskip on some improvements.

files:
  Lib/test/test_java_integration.py |  5 +----
  1 files changed, 1 insertions(+), 4 deletions(-)


diff --git a/Lib/test/test_java_integration.py b/Lib/test/test_java_integration.py
--- a/Lib/test/test_java_integration.py
+++ b/Lib/test/test_java_integration.py
@@ -109,7 +109,6 @@
     def tearDown(self):
         sys.stdout = self.orig_stdout
 
-    @unittest.skip("FIXME: check after ASM 4.0 update is complete.")
     def test_stdout_outputstream(self):
         out = FileOutputStream(test_support.TESTFN)
         sys.stdout = out
@@ -121,11 +120,9 @@
 
 class IOTest(unittest.TestCase):
 
-    @unittest.skip("FIXME: check after ASM 4.0 update is complete.")
     def test_io_errors(self):
         "Check that IOException isn't mangled into an IOError"
         self.assertRaises(UnsupportedEncodingException, OutputStreamWriter, System.out, "garbage")
-        self.assertRaises(IOError, OutputStreamWriter, System.out, "garbage")
 
     def test_fileio_error(self):
         self.assertRaises(FileNotFoundException, FileInputStream, "garbage")
@@ -428,7 +425,7 @@
 
 class SecurityManagerTest(unittest.TestCase):
 
-    @unittest.skip("FIXME: check after ASM 4.0 update is complete.")
+    @unittest.skip("XXX: not working")
     def test_nonexistent_import_with_security(self):
         if os._name == 'nt':
             # http://bugs.jython.org/issue1371

-- 
Repository URL: http://hg.python.org/jython


More information about the Jython-checkins mailing list