From 9c84b9d6bbcbad26e4922b54cfba23be06ca2c56 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Mon, 21 Jan 2008 22:01:58 +0100 Subject: [PATCH] test case fix --- tests/run/r_vree_1.pyx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/run/r_vree_1.pyx b/tests/run/r_vree_1.pyx index 74d1ba13..b49420c0 100644 --- a/tests/run/r_vree_1.pyx +++ b/tests/run/r_vree_1.pyx @@ -15,7 +15,9 @@ __doc__ = """ >>> test(sys.maxint * 2 + 1) 4294967295L - >>> test(8 ** unsigned_long_size() - 1) > sys.maxint + >>> test(256 ** unsigned_long_size() - 1) > 0 + True + >>> test(256 ** unsigned_long_size() - 1) > sys.maxint True """ -- 2.26.2