From 0157ebe999e951a4a3a5296586b08f4f96384bb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Walter=20D=C3=B6rwald?= Date: Fri, 8 Jun 2007 10:38:38 +0000 Subject: Fix chr() test (1000000 was accepted on a UCS4 build). --- Lib/test/test_exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index 30cc37c..27ddf72 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -99,7 +99,7 @@ class ExceptionTests(unittest.TestCase): except TypeError: pass self.raise_catch(ValueError, "ValueError") - self.assertRaises(ValueError, chr, 1000000) + self.assertRaises(ValueError, chr, sys.maxunicode+1) self.raise_catch(ZeroDivisionError, "ZeroDivisionError") try: x = 1/0 -- cgit v0.12