From: Stefan Behnel Date: Mon, 25 Apr 2011 07:27:24 +0000 (+0200) Subject: test fix X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=390042f140b820c3f20c61c87d77fb6dd48f1b14;p=cython.git test fix --- diff --git a/tests/run/strliterals.pyx b/tests/run/strliterals.pyx index 4312d988..f50ca49c 100644 --- a/tests/run/strliterals.pyx +++ b/tests/run/strliterals.pyx @@ -133,7 +133,7 @@ __doc__ = ur""" 28 >>> (sys.version_info[0] >= 3 and sys.maxunicode == 1114111 and len(str_uescape) == 3 or - ... sys.version_info[0] >= 3 and sys.maxunicode == 65536 and len(str_uescape) == 4 or + ... sys.version_info[0] >= 3 and sys.maxunicode == 65535 and len(str_uescape) == 4 or ... sys.version_info[0] < 3 and len(str_uescape) == 17 or ... len(str_uescape)) True