[pypy-svn] r53587 - pypy/branch/jit-hotpath/pypy/jit/rainbow/test

arigo at codespeak.net arigo at codespeak.net
Tue Apr 8 17:17:50 CEST 2008


Author: arigo
Date: Tue Apr  8 17:17:50 2008
New Revision: 53587

Modified:
   pypy/branch/jit-hotpath/pypy/jit/rainbow/test/test_3tl.py
Log:
Fix.


Modified: pypy/branch/jit-hotpath/pypy/jit/rainbow/test/test_3tl.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/rainbow/test/test_3tl.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/rainbow/test/test_3tl.py	Tue Apr  8 17:17:50 2008
@@ -15,7 +15,7 @@
             else:
                 assert 0
             bytecode = [s for s in bytecode.split(' ') if s != '']
-            args = [tiny3.IntBox(arg1), tiny3.IntBox(arg3), tiny3.IntBox(arg3)]
+            args = [tiny3.IntBox(arg1), tiny3.IntBox(arg2), tiny3.IntBox(arg3)]
             return tiny3.repr(tiny3.interpret(bytecode, args))
 
         res = self.run(main, [1, 5, 0, 0], threshold=2,



More information about the Pypy-commit mailing list