[Jython-checkins] jython: Removing test that doesn't work on CPython 2.7.

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


http://hg.python.org/jython/rev/2445b0e2b4c9
changeset:   7091:2445b0e2b4c9
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Tue Mar 19 14:16:04 2013 -0700
summary:
  Removing test that doesn't work on CPython 2.7.

files:
  Lib/test/test_seq_jy.py |  2 --
  1 files changed, 0 insertions(+), 2 deletions(-)


diff --git a/Lib/test/test_seq_jy.py b/Lib/test/test_seq_jy.py
--- a/Lib/test/test_seq_jy.py
+++ b/Lib/test/test_seq_jy.py
@@ -35,7 +35,6 @@
         for type2test in self.types2test:
             self.assertTrue(type2test() in foo)
 
-    @unittest.skip("FIXME: broken")
     def test_seq_subclass_equality(self):
         # Various combinations of PyObject._eq, overriden Object.equals,
         # and cmp implementations
@@ -45,7 +44,6 @@
                     return False
             l = type2test(['bar', 'baz'])
             foo = Foo(l)
-            self.assertNotEqual(l, foo)
             self.assertEqual(cmp(l, foo), 1)
             self.assertEqual(cmp(foo, foo), 0)
 

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


More information about the Jython-checkins mailing list