fix test case on 64 bit systems
authorStefan Behnel <scoder@users.berlios.de>
Thu, 1 May 2008 18:09:34 +0000 (20:09 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Thu, 1 May 2008 18:09:34 +0000 (20:09 +0200)
tests/run/r_vree_1.pyx

index b49420c06aabcae25e25260f6507e8b665334666..7f6f3a53af1ffaf0ec608105e24a5eb768a8fc93 100644 (file)
@@ -10,10 +10,10 @@ __doc__ = """
     >>> type(sys.maxint * 2 + 1) is long
     True
 
-    >>> test(sys.maxint + 1)
-    2147483648L
-    >>> test(sys.maxint * 2 + 1)
-    4294967295L
+    >>> test(sys.maxint + 1) == sys.maxint + 1
+    True
+    >>> test(sys.maxint * 2 + 1) == sys.maxint * 2 + 1
+    True
 
     >>> test(256 ** unsigned_long_size() - 1) > 0
     True