[pypy-svn] r70772 - pypy/branch/direct-assembler-call/pypy/jit/metainterp/test

fijal at codespeak.net fijal at codespeak.net
Fri Jan 22 13:28:56 CET 2010


Author: fijal
Date: Fri Jan 22 13:28:55 2010
New Revision: 70772

Modified:
   pypy/branch/direct-assembler-call/pypy/jit/metainterp/test/test_pyjitpl.py
Log:
Fix the test


Modified: pypy/branch/direct-assembler-call/pypy/jit/metainterp/test/test_pyjitpl.py
==============================================================================
--- pypy/branch/direct-assembler-call/pypy/jit/metainterp/test/test_pyjitpl.py	(original)
+++ pypy/branch/direct-assembler-call/pypy/jit/metainterp/test/test_pyjitpl.py	Fri Jan 22 13:28:55 2010
@@ -89,7 +89,7 @@
         assert box.value == referencebox.value
         return True
     metainterp = pyjitpl.MetaInterp(FakeStaticData())
-    metainterp.history = History(None)
+    metainterp.history = History()
     b1 = BoxInt(1)
     b2 = BoxInt(2)
     c3 = ConstInt(3)



More information about the Pypy-commit mailing list