File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1577,10 +1577,6 @@ class TestArrayWithFilters(TestArray):
1577
1577
def create_array (read_only = False , ** kwargs ):
1578
1578
store = dict ()
1579
1579
dtype = kwargs .get ('dtype' , None )
1580
- # WARN(onalant): this is to compensate for unstructured dtypes
1581
- # should this be in upstream numcodecs?
1582
- if isinstance (dtype , np .dtype ):
1583
- dtype = dtype .base
1584
1580
filters = [
1585
1581
Delta (dtype = dtype ),
1586
1582
FixedScaleOffset (dtype = dtype , scale = 1 , offset = 0 ),
@@ -1651,6 +1647,10 @@ def test_astype(self):
1651
1647
expected = data .astype (astype )
1652
1648
assert_array_equal (expected , z2 )
1653
1649
1650
+ def test_unstructured_array (self ):
1651
+ # skip this one, cannot do delta on unstructured array
1652
+ pass
1653
+
1654
1654
def test_structured_array (self ):
1655
1655
# skip this one, cannot do delta on structured array
1656
1656
pass
You can’t perform that action at this time.
0 commit comments