diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2019-09-26 09:36:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-26 09:36:45 -0700 |
commit | cb89f88af361f045c560886b1268038ba5ea9cc2 (patch) | |
tree | 65301c9c0e3d0750093ad7890341f809460d8f9d /numpy/lib/tests/test_function_base.py | |
parent | 504ba4bd9d414fecbfe61c511adf0027208e29e2 (diff) | |
parent | 65e91e4d711b86fe2705202251791a2e30a3c075 (diff) | |
download | numpy-cb89f88af361f045c560886b1268038ba5ea9cc2.tar.gz |
Merge pull request #14583 from mattip/select-deprecation
DEP: remove deprecated select behaviour
Diffstat (limited to 'numpy/lib/tests/test_function_base.py')
-rw-r--r-- | numpy/lib/tests/test_function_base.py | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/numpy/lib/tests/test_function_base.py b/numpy/lib/tests/test_function_base.py index eae52c002..1eae8ccfb 100644 --- a/numpy/lib/tests/test_function_base.py +++ b/numpy/lib/tests/test_function_base.py @@ -423,27 +423,17 @@ class TestSelect(object): assert_equal(select([m], [d]), [0, 0, 0, np.nan, 0, 0]) def test_deprecated_empty(self): - with warnings.catch_warnings(record=True): - warnings.simplefilter("always") - assert_equal(select([], [], 3j), 3j) - - with warnings.catch_warnings(): - warnings.simplefilter("always") - assert_warns(DeprecationWarning, select, [], []) - warnings.simplefilter("error") - assert_raises(DeprecationWarning, select, [], []) + assert_raises(ValueError, select, [], [], 3j) + assert_raises(ValueError, select, [], []) def test_non_bool_deprecation(self): choices = self.choices conditions = self.conditions[:] - with warnings.catch_warnings(): - warnings.filterwarnings("always") - conditions[0] = conditions[0].astype(np.int_) - assert_warns(DeprecationWarning, select, conditions, choices) - conditions[0] = conditions[0].astype(np.uint8) - assert_warns(DeprecationWarning, select, conditions, choices) - warnings.filterwarnings("error") - assert_raises(DeprecationWarning, select, conditions, choices) + conditions[0] = conditions[0].astype(np.int_) + assert_raises(TypeError, select, conditions, choices) + conditions[0] = conditions[0].astype(np.uint8) + assert_raises(TypeError, select, conditions, choices) + assert_raises(TypeError, select, conditions, choices) def test_many_arguments(self): # This used to be limited by NPY_MAXARGS == 32 |