Removed unnecessary lambdas

This commit is contained in:
Andrew Murray 2017-03-03 21:28:58 +11:00
parent 4a6e8d7e92
commit 24eb48e9e0
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ class TestFileFitsStub(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

View File

@ -32,7 +32,7 @@ class TestFileHdf5Stub(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