[pypy-svn] r13234 - pypy/branch/translator-without-old-genc/genc/test

arigo at codespeak.net arigo at codespeak.net
Thu Jun 9 18:34:07 CEST 2005


Author: arigo
Date: Thu Jun  9 18:34:06 2005
New Revision: 13234

Modified:
   pypy/branch/translator-without-old-genc/genc/test/test_typed.py
Log:
Disabled test_slice_long, which makes no sense in this context.


Modified: pypy/branch/translator-without-old-genc/genc/test/test_typed.py
==============================================================================
--- pypy/branch/translator-without-old-genc/genc/test/test_typed.py	(original)
+++ pypy/branch/translator-without-old-genc/genc/test/test_typed.py	Thu Jun  9 18:34:06 2005
@@ -50,6 +50,9 @@
         assert l == [3, 'c', 8, 11, 'h', 9]
         assert result == ([3, 'c'], [9], [11, 'h'])
 
+    def test_slice_long(self):
+        "the parent's test_slice_long() makes no sense here"
+
     def test_int_overflow(self):
         fn = self.getcompiled(snippet.add_func)
         raises(OverflowError, fn, sys_maxint())



More information about the Pypy-commit mailing list