Skip to content

Commit

Permalink
Update src/fabio/test/codecs/test_esperantoimage.py
Browse files Browse the repository at this point in the history
Co-authored-by: Thomas VINCENT <[email protected]>
  • Loading branch information
kif and t20100 authored Mar 26, 2024
1 parent bb45d6c commit 981a437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fabio/test/codecs/test_esperantoimage.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def test_data(self):
def test_values(self):
esp = fabio.open(UtilsTest.getimage("reference.esperanto.bz2")[:-4])
npy = fabio.open(UtilsTest.getimage("reference.npy.bz2")[:-4])
self.assertEqual(numpy.all(esp.data == npy.data), True, "Images are the same")
self.assertTrue(numpy.array_equal(esp.data, npy.data), "Images are the same")


def suite():
Expand Down

0 comments on commit 981a437

Please sign in to comment.