Skip to content

Commit

Permalink
Fix bad assert in test
Browse files Browse the repository at this point in the history
  • Loading branch information
oruebel committed Oct 8, 2019
1 parent a89aca9 commit 8e8d221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_io_hdf5_h5tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def test_write_dataset_list_compress_szip(self):
self.io.write_dataset(self.f, DatasetBuilder('test_dataset', a, attributes={}))
dset = self.f['test_dataset']
self.assertTrue(np.all(dset[:] == a.data))
self.assertEqual(dset.compression, 'lzf')
self.assertEqual(dset.compression, 'szip')
self.assertEqual(dset.shuffle, True)
self.assertEqual(dset.fletcher32, True)

Expand Down

0 comments on commit 8e8d221

Please sign in to comment.