@@ -111,7 +111,7 @@ def test_pow_special(value, asarray):
111111
112112
113113@pytest .mark .parametrize (
114- "value" , [1 , 1.0 , True , np .bool_ (True ), np .int_ (1 ), np .float_ (1 )],
114+ "value" , [1 , 1.0 , True , np .bool_ (True ), np .int_ (1 ), np .float_ (1 )]
115115)
116116@pytest .mark .parametrize ("asarray" , [True , False ])
117117def test_rpow_special (value , asarray ):
@@ -128,9 +128,7 @@ def test_rpow_special(value, asarray):
128128 assert result == value
129129
130130
131- @pytest .mark .parametrize (
132- "value" , [- 1 , - 1.0 , np .int_ (- 1 ), np .float_ (- 1 )],
133- )
131+ @pytest .mark .parametrize ("value" , [- 1 , - 1.0 , np .int_ (- 1 ), np .float_ (- 1 )])
134132@pytest .mark .parametrize ("asarray" , [True , False ])
135133def test_rpow_minus_one (value , asarray ):
136134 if asarray :
@@ -193,9 +191,7 @@ def test_logical_not():
193191 assert ~ NA is NA
194192
195193
196- @pytest .mark .parametrize (
197- "shape" , [(3 ,), (3 , 3 ), (1 , 2 , 3 )],
198- )
194+ @pytest .mark .parametrize ("shape" , [(3 ,), (3 , 3 ), (1 , 2 , 3 )])
199195def test_arithmetic_ndarray (shape , all_arithmetic_functions ):
200196 op = all_arithmetic_functions
201197 a = np .zeros (shape )
0 commit comments