[pypy-svn] r61660 - pypy/trunk/pypy/objspace/std/test

arigo at codespeak.net arigo at codespeak.net
Mon Feb 9 15:47:02 CET 2009


Author: arigo
Date: Mon Feb  9 15:46:59 2009
New Revision: 61660

Modified:
   pypy/trunk/pypy/objspace/std/test/test_ropeobject.py
   pypy/trunk/pypy/objspace/std/test/test_ropeunicodeobject.py
Log:
This test was split in two, and it's "test_rfind_corner_case"
that we want to skip.


Modified: pypy/trunk/pypy/objspace/std/test/test_ropeobject.py
==============================================================================
--- pypy/trunk/pypy/objspace/std/test/test_ropeobject.py	(original)
+++ pypy/trunk/pypy/objspace/std/test/test_ropeobject.py	Mon Feb  9 15:46:59 2009
@@ -80,7 +80,7 @@
     def setup_class(cls):
         cls.space = gettestobjspace(**{"objspace.std.withrope": True})
 
-    def test_rfind(self):
+    def test_rfind_corner_case(self):
         skip("XXX Fix")
 
 class AppTestPrebuilt(AppTestRopeObject):

Modified: pypy/trunk/pypy/objspace/std/test/test_ropeunicodeobject.py
==============================================================================
--- pypy/trunk/pypy/objspace/std/test/test_ropeunicodeobject.py	(original)
+++ pypy/trunk/pypy/objspace/std/test/test_ropeunicodeobject.py	Mon Feb  9 15:46:59 2009
@@ -46,7 +46,7 @@
     def test_replace_with_buffer(self):
         skip("XXX fix")
 
-    def test_rfind(self):
+    def test_rfind_corner_case(self):
         skip("XXX fix")
 
     def test_rsplit(self):



More information about the Pypy-commit mailing list