[pypy-svn] pypy fast-forward: Fix typo in test

amauryfa commits-noreply at bitbucket.org
Tue Jan 11 17:55:32 CET 2011


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: fast-forward
Changeset: r40587:350a96084395
Date: 2011-01-11 17:54 +0100
http://bitbucket.org/pypy/pypy/changeset/350a96084395/

Log:	Fix typo in test

diff --git a/pypy/rpython/test/test_rint.py b/pypy/rpython/test/test_rint.py
--- a/pypy/rpython/test/test_rint.py
+++ b/pypy/rpython/test/test_rint.py
@@ -354,7 +354,7 @@
             return objectmodel.compute_hash(x)
         res = self.interpret(f, [123456789])
         assert res == 123456789
-        res = self.interpret(f, [int64(123456789012345678)])
+        res = self.interpret(f, [r_int64(123456789012345678)])
         if sys.maxint == 2147483647:
             # check the way we compute such a hash so far
             assert res == -1506741426 + 9 * 28744523


More information about the Pypy-commit mailing list