[pypy-svn] r77585 - pypy/branch/fast-forward/pypy/rlib/test

afa at codespeak.net afa at codespeak.net
Mon Oct 4 20:51:56 CEST 2010


Author: afa
Date: Mon Oct  4 20:51:55 2010
New Revision: 77585

Modified:
   pypy/branch/fast-forward/pypy/rlib/test/test_rstring.py
Log:
Fix test now that UnicodeBuilder has been made stricter


Modified: pypy/branch/fast-forward/pypy/rlib/test/test_rstring.py
==============================================================================
--- pypy/branch/fast-forward/pypy/rlib/test/test_rstring.py	(original)
+++ pypy/branch/fast-forward/pypy/rlib/test/test_rstring.py	Mon Oct  4 20:51:55 2010
@@ -39,7 +39,7 @@
     s.append(u'a')
     s.append(u'abc')
     s.append_slice(u'abcdef', 1, 2)
-    s.append_multiple_char('d', 4)
+    s.append_multiple_char(u'd', 4)
     assert s.build() == 'aabcbdddd'
     assert isinstance(s.build(), unicode)
 



More information about the Pypy-commit mailing list