[pypy-commit] pypy store-sink-array: Fix test.

arigo noreply at buildbot.pypy.org
Sun Jun 19 19:52:45 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: store-sink-array
Changeset: r45018:3b65453ac80c
Date: 2011-06-19 19:38 +0200
http://bitbucket.org/pypy/pypy/changeset/3b65453ac80c/

Log:	Fix test.

diff --git a/pypy/jit/metainterp/test/test_list.py b/pypy/jit/metainterp/test/test_list.py
--- a/pypy/jit/metainterp/test/test_list.py
+++ b/pypy/jit/metainterp/test/test_list.py
@@ -49,7 +49,7 @@
                 x = l[n]
                 l = [3] * 100
                 l[3] = x
-                l[3] = x + 1
+                l[4] = x + 1
                 n -= 1
             return l[0]
 


More information about the pypy-commit mailing list