From 7c0cebd3be19fc461974f2a26e4e211ee932cc16 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 1 May 2008 20:09:34 +0200 Subject: [PATCH] fix test case on 64 bit systems --- tests/run/r_vree_1.pyx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/run/r_vree_1.pyx b/tests/run/r_vree_1.pyx index b49420c0..7f6f3a53 100644 --- a/tests/run/r_vree_1.pyx +++ b/tests/run/r_vree_1.pyx @@ -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 -- 2.26.2