@@ -194,6 +194,7 @@ def test_interp_linear_identity(
194194
195195 with pytest .raises (NotImplementedError ):
196196 array .interp_linear (array .indices )
197+
197198 @pytest .mark .parametrize (
198199 argnames = 'item' ,
199200 argvalues = [
@@ -206,6 +207,7 @@ def test_interp_linear_identity(
206207 outputs = na .ScalarArrayRange (0 , 2 , axis = 'y' ),
207208 )
208209 ),
210+ True ,
209211 na .ScalarLinearSpace (0 , 1 , axis = 'y' , num = _num_y ) > 0.5 ,
210212 na .FunctionArray (
211213 inputs = na .ScalarLinearSpace (0 , 1 , axis = 'y' , num = _num_y ),
@@ -225,9 +227,6 @@ def test_interp_linear_identity(
225227 )
226228 ],
227229 )
228-
229-
230-
231230 def test__getitem__ (
232231 self ,
233232 array : na .AbstractFunctionArray ,
@@ -947,6 +946,7 @@ class TestFunctionArray(
947946 dict (y = slice (None )),
948947 dict (y = na .ScalarArrayRange (0 , _num_y , axis = 'y' )),
949948 dict (x = na .ScalarArrayRange (0 , _num_x , axis = 'x' ), y = na .ScalarArrayRange (0 , _num_y , axis = 'y' )),
949+ True ,
950950 na .FunctionArray (
951951 inputs = na .ScalarLinearSpace (0 , 1 , axis = 'y' , num = _num_y ),
952952 outputs = na .ScalarArray .ones (shape = dict (y = _num_y ), dtype = bool ),
0 commit comments