From 390042f140b820c3f20c61c87d77fb6dd48f1b14 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Mon, 25 Apr 2011 09:27:24 +0200 Subject: [PATCH] test fix --- tests/run/strliterals.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.26.2