[pypy-svn] r76930 - pypy/trunk/pypy/rpython/test

arigo at codespeak.net arigo at codespeak.net
Wed Sep 8 09:57:28 CEST 2010


Author: arigo
Date: Wed Sep  8 09:57:26 2010
New Revision: 76930

Modified:
   pypy/trunk/pypy/rpython/test/test_rint.py
Log:
More fixes for r76920.

Modified: pypy/trunk/pypy/rpython/test/test_rint.py
==============================================================================
--- pypy/trunk/pypy/rpython/test/test_rint.py	(original)
+++ pypy/trunk/pypy/rpython/test/test_rint.py	Wed Sep  8 09:57:26 2010
@@ -117,10 +117,10 @@
         assert self.ll_to_string(res) == '413974738222117'
 
     def test_unsigned(self):
-        bigvalue = sys.maxint + 17
+        bigvalue = r_uint(sys.maxint + 17)
         def dummy(i):
             i = r_uint(i)
-            j = r_uint(bigvalue)
+            j = bigvalue
             return i < j
 
         res = self.interpret(dummy,[0])



More information about the Pypy-commit mailing list