diff options
Diffstat (limited to 'Lib/test/test_codeccallbacks.py')
| -rw-r--r-- | Lib/test/test_codeccallbacks.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_codeccallbacks.py b/Lib/test/test_codeccallbacks.py index 84804bb..a1ce9cf 100644 --- a/Lib/test/test_codeccallbacks.py +++ b/Lib/test/test_codeccallbacks.py @@ -819,7 +819,7 @@ class CodecCallbackTest(unittest.TestCase):              def __getitem__(self, key):                  raise ValueError          #self.assertRaises(ValueError, "\xff".translate, D()) -        self.assertRaises(TypeError, "\xff".translate, {0xff: sys.maxunicode+1}) +        self.assertRaises(ValueError, "\xff".translate, {0xff: sys.maxunicode+1})          self.assertRaises(TypeError, "\xff".translate, {0xff: ()})      def test_bug828737(self):  | 
