Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r71099:b7515f0e2ef5
Date: 2014-04-30 20:53 +0200
http://bitbucket.org/pypy/pypy/changeset/b7515f0e2ef5/

Log:    fix

diff --git a/rpython/jit/backend/test/runner_test.py 
b/rpython/jit/backend/test/runner_test.py
--- a/rpython/jit/backend/test/runner_test.py
+++ b/rpython/jit/backend/test/runner_test.py
@@ -4352,5 +4352,5 @@
         if not self.cpu.supports_singlefloats:
             py.test.skip("requires singlefloats")
         res = self.execute_operation(rop.CAST_FLOAT_TO_SINGLEFLOAT,
-                                   [BoxFloat(12.5)], 'int')
+                                   [boxfloat(12.5)], 'int')
         assert res.getint() == struct.unpack("I", struct.pack("f", 12.5))[0]
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to