@@ -111,7 +111,7 @@ def test_pow_special(value, asarray):
111
111
112
112
113
113
@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 )]
115
115
)
116
116
@pytest .mark .parametrize ("asarray" , [True , False ])
117
117
def test_rpow_special (value , asarray ):
@@ -128,9 +128,7 @@ def test_rpow_special(value, asarray):
128
128
assert result == value
129
129
130
130
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 )])
134
132
@pytest .mark .parametrize ("asarray" , [True , False ])
135
133
def test_rpow_minus_one (value , asarray ):
136
134
if asarray :
@@ -193,9 +191,7 @@ def test_logical_not():
193
191
assert ~ NA is NA
194
192
195
193
196
- @pytest .mark .parametrize (
197
- "shape" , [(3 ,), (3 , 3 ), (1 , 2 , 3 )],
198
- )
194
+ @pytest .mark .parametrize ("shape" , [(3 ,), (3 , 3 ), (1 , 2 , 3 )])
199
195
def test_arithmetic_ndarray (shape , all_arithmetic_functions ):
200
196
op = all_arithmetic_functions
201
197
a = np .zeros (shape )
0 commit comments