[pypy-svn] r33054 - pypy/branch/even-more-config2/pypy/translator/c/test

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Oct 9 15:35:47 CEST 2006


Author: cfbolz
Date: Mon Oct  9 15:35:46 2006
New Revision: 33054

Modified:
   pypy/branch/even-more-config2/pypy/translator/c/test/test_typed.py
Log:
typo


Modified: pypy/branch/even-more-config2/pypy/translator/c/test/test_typed.py
==============================================================================
--- pypy/branch/even-more-config2/pypy/translator/c/test/test_typed.py	(original)
+++ pypy/branch/even-more-config2/pypy/translator/c/test/test_typed.py	Mon Oct  9 15:35:46 2006
@@ -390,8 +390,8 @@
         def testfn(i, j):
             s1 = ['one', 'two']
             s2 = ['one', 'two', 'o', 'on', 'ne', 'e', 'twos', 'foobar', 'fortytwo']
-            return s1[i].startswith(s2[j], [int, int])
-        fn = self.getcompiled(testfn)
+            return s1[i].startswith(s2[j])
+        fn = self.getcompiled(testfn, [int, int])
         for i in range(2):
             for j in range(9):
                 res = fn(i, j)



More information about the Pypy-commit mailing list