[pypy-svn] r77864 - pypy/trunk/pypy/rlib/test

arigo at codespeak.net arigo at codespeak.net
Wed Oct 13 14:14:53 CEST 2010


Author: arigo
Date: Wed Oct 13 14:14:52 2010
New Revision: 77864

Modified:
   pypy/trunk/pypy/rlib/test/test_runicode.py
Log:
Fix.


Modified: pypy/trunk/pypy/rlib/test/test_runicode.py
==============================================================================
--- pypy/trunk/pypy/rlib/test/test_runicode.py	(original)
+++ pypy/trunk/pypy/rlib/test/test_runicode.py	Wed Oct 13 14:14:52 2010
@@ -76,7 +76,7 @@
                 assert start == startingpos
                 assert stop == endingpos
                 return u"42424242", stop
-            return "", endingpos
+            return u"", endingpos
         decoder = self.getdecoder(encoding)
         if addstuff:
             s += "some rest in ascii"



More information about the Pypy-commit mailing list