diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-08-05 18:17:23 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2017-08-05 19:01:08 -0600 |
commit | 6a2bc5e3548ff8e3b1fcd1a6d7a4ee263c17aa0b (patch) | |
tree | bd669d444c6a225e00cba33d03a6626e9e28f4d1 /numpy/lib/tests/test_shape_base.py | |
parent | bfe43b26969231cfe8196868280c07f0c0aa8f50 (diff) | |
download | numpy-6a2bc5e3548ff8e3b1fcd1a6d7a4ee263c17aa0b.tar.gz |
MAINT: Remove `level=` keyword from test arguments.
I don't know what that argument was used for, but it showis up in old
tests and is not explicitly used within the tests. I assume it was part
of an old testing framework and is now longer needed.
Diffstat (limited to 'numpy/lib/tests/test_shape_base.py')
-rw-r--r-- | numpy/lib/tests/test_shape_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_shape_base.py b/numpy/lib/tests/test_shape_base.py index 9e739ea63..d0afeefd9 100644 --- a/numpy/lib/tests/test_shape_base.py +++ b/numpy/lib/tests/test_shape_base.py @@ -19,7 +19,7 @@ class TestApplyAlongAxis(object): assert_array_equal( apply_along_axis(len, 0, a), len(a)*np.ones(a.shape[1])) - def test_simple101(self, level=11): + def test_simple101(self): a = np.ones((10, 101), 'd') assert_array_equal( apply_along_axis(len, 0, a), len(a)*np.ones(a.shape[1])) |