Skip to content

Commit d250975

Browse files
committed
tests
1 parent e713a98 commit d250975

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

named_arrays/_functions/tests/test_functions_vertices.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def test_reshape(self, array: na.AbstractArray, newshape: dict[str, int]):
179179
for ax in newshape:
180180
if ax in array.axes_vertex or (ax not in array.axes and len(array.axes_vertex) != 0):
181181
with pytest.raises(ValueError):
182-
result = np.reshape(a=array, newshape=newshape)
182+
result = np.reshape(array, newshape=newshape)
183183
return
184184

185185
super().test_reshape(array, newshape)

0 commit comments

Comments
 (0)