[pypy-svn] r68699 - pypy/branch/gc-arena/pypy/translator/c/test

arigo at codespeak.net arigo at codespeak.net
Wed Oct 21 19:04:43 CEST 2009


Author: arigo
Date: Wed Oct 21 19:04:42 2009
New Revision: 68699

Modified:
   pypy/branch/gc-arena/pypy/translator/c/test/test_newgc.py
Log:
Fix the test.


Modified: pypy/branch/gc-arena/pypy/translator/c/test/test_newgc.py
==============================================================================
--- pypy/branch/gc-arena/pypy/translator/c/test/test_newgc.py	(original)
+++ pypy/branch/gc-arena/pypy/translator/c/test/test_newgc.py	Wed Oct 21 19:04:42 2009
@@ -931,7 +931,7 @@
 
     def test_string_builder_over_allocation(self):
         res = self.run('string_builder_over_allocation')
-        assert res == 'abcddefgrty' * 1000*'z' + 1000*'u'
+        assert res == 'abcddefgrty' + 1000*'z' + 1000*'u'
 
 class TestGenerationalGC(TestSemiSpaceGC):
     gcpolicy = "generation"



More information about the Pypy-commit mailing list