Remove unnecessary lambda

This commit is contained in:
hugovk 2017-03-05 09:14:44 +02:00
parent 277d8123a4
commit d69e252eb8

View File

@ -32,7 +32,7 @@ class TestFileBufrStub(PillowTestCase):
im = Image.open(TEST_FILE)
# Act / Assert: stub cannot load without an implemented handler
self.assertRaises(IOError, lambda: im.load())
self.assertRaises(IOError, im.load)
def test_save(self):
# Arrange