Skip to content

Commit

Permalink
Expect scaleoffset tests to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjala committed Apr 29, 2024
1 parent 0cc166e commit 87ef44f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/hl/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,6 @@ 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
Expand Down Expand Up @@ -767,7 +766,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 """

Expand All @@ -789,7 +787,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 """

Expand All @@ -810,7 +807,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 """

Expand Down

0 comments on commit 87ef44f

Please sign in to comment.