diff --git a/test/hl/test_dataset.py b/test/hl/test_dataset.py index 28d6217..dd0043f 100644 --- a/test/hl/test_dataset.py +++ b/test/hl/test_dataset.py @@ -735,10 +735,8 @@ def test_unsupport_dtype(self): with self.assertRaises(TypeError): self.f.create_dataset('foo', (20, 30), dtype=bool, scaleoffset=True) - @ut.expectedFailure def test_float(self): """ Scaleoffset filter works for floating point data """ - # TBD: Add support for scale offset filter scalefac = 4 shape = (100, 300) @@ -767,7 +765,6 @@ def test_float(self): else: assert not (readdata == testdata).all() - @ut.expectedFailure def test_int(self): """ Scaleoffset filter works for integer data with default precision """ @@ -789,7 +786,6 @@ def test_int(self): readdata = self.f['foo'][...] self.assertArrayEqual(readdata, testdata) - @ut.expectedFailure def test_int_with_minbits(self): """ Scaleoffset filter works for integer data with specified precision """ @@ -810,7 +806,6 @@ def test_int_with_minbits(self): readdata = self.f['foo'][...] self.assertArrayEqual(readdata, testdata) - @ut.expectedFailure def test_int_with_minbits_lossy(self): """ Scaleoffset filter works for integer data with specified precision """