diff options
author | mattip <matti.picus@gmail.com> | 2022-07-20 09:23:32 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2022-07-20 09:23:32 +0300 |
commit | 3321bc59ca5e47a8d8677fa4d1a9af37d570a835 (patch) | |
tree | d0ed14a876a9ab2e2502f6cc0cbfd2ef57deb778 /numpy/lib | |
parent | 57d9f0ac15932aabe6c80788c3f9c1147a0acc88 (diff) | |
download | numpy-3321bc59ca5e47a8d8677fa4d1a9af37d570a835.tar.gz |
Revert "ENH: Adding __array_ufunc__ capability to MaskedArrays."
This reverts commit 8cd6f4ca00b6e0da3833fc267d50067b2ddbc069.
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/tests/test_function_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_function_base.py b/numpy/lib/tests/test_function_base.py index 1c3c32bdd..8457551ca 100644 --- a/numpy/lib/tests/test_function_base.py +++ b/numpy/lib/tests/test_function_base.py @@ -780,7 +780,7 @@ class TestDiff: mask=[[False, False], [True, False], [False, True], [True, True], [False, False]]) out = diff(x) - assert_array_equal(out.data, [[1], [4], [6], [8], [1]]) + assert_array_equal(out.data, [[1], [1], [1], [1], [1]]) assert_array_equal(out.mask, [[False], [True], [True], [True], [False]]) assert_(type(out) is type(x)) |