From 87ef44f6895a9efc7c785c76c8f440060080e2da Mon Sep 17 00:00:00 2001 From: Matthew Larson Date: Mon, 29 Apr 2024 11:32:37 -0500 Subject: [PATCH] Expect scaleoffset tests to pass --- test/hl/test_dataset.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/hl/test_dataset.py b/test/hl/test_dataset.py index 6ec6878..355615a 100644 --- a/test/hl/test_dataset.py +++ b/test/hl/test_dataset.py @@ -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 @@ -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 """ @@ -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 """ @@ -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 """