From edbcc1332f9d8e09fc7f511b6122c06b8dbd49c5 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 24 Oct 2007 21:25:34 +0000 Subject: Remove a test case which is no longer valid. --- Lib/test/test_codeccallbacks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_codeccallbacks.py b/Lib/test/test_codeccallbacks.py index 0256eb6..9cf43a5 100644 --- a/Lib/test/test_codeccallbacks.py +++ b/Lib/test/test_codeccallbacks.py @@ -792,7 +792,7 @@ class CodecCallbackTest(unittest.TestCase): class D(dict): def __getitem__(self, key): raise ValueError - self.assertRaises(ValueError, "\xff".translate, D()) + #self.assertRaises(ValueError, "\xff".translate, D()) self.assertRaises(TypeError, "\xff".translate, {0xff: sys.maxunicode+1}) self.assertRaises(TypeError, "\xff".translate, {0xff: ()}) -- cgit v0.12