fix test that wasn't working as expected #4990

This commit is contained in:
Benjamin Peterson 2009-01-18 21:11:38 +00:00
parent 438195fc11
commit 910f216260
1 changed files with 1 additions and 1 deletions

View File

@ -579,7 +579,7 @@ class CodecCallbackTest(unittest.TestCase):
encs = ("ascii", "latin-1", "iso-8859-1", "iso-8859-15")
for res in results:
codecs.register_error("test.badhandler", lambda: res)
codecs.register_error("test.badhandler", lambda x: res)
for enc in encs:
self.assertRaises(
TypeError,