Skip to content

Commit

Permalink
MAINT: Make parameters match label.
Browse files Browse the repository at this point in the history
  • Loading branch information
charris authored Sep 13, 2021
1 parent 705c54c commit eb6ae9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/lib/tests/test_nanfunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,8 +465,8 @@ class TestNanFunctions_CumSumProd(SharedNanFunctionsTestsMixin):
@pytest.mark.parametrize("axis", [None, 0, 1])
@pytest.mark.parametrize("dtype", np.typecodes["AllFloat"])
@pytest.mark.parametrize("array", [
np.full((3, 3), np.nan),
np.array(np.nan),
np.full((3, 3), np.nan)
], ids=["0d", "2d"])
def test_allnans(self, axis, dtype, array):
if axis is not None and array.ndim == 0:
Expand Down

0 comments on commit eb6ae9b

Please sign in to comment.