diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-02-21 15:15:32 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-02-21 15:15:32 -0700 |
commit | dd857489fcaa745ea569c523249fe37537bfe280 (patch) | |
tree | b23a9b6a4af4bbedf3be237b97d1faf973e6e78e /numpy/lib/tests/test_nanfunctions.py | |
parent | 34d7bee3d472e5b97c1ea7c8d7e8d9949a9ebc16 (diff) | |
parent | fd399aaee5b703744f508fb2ce4718e1f4bc8984 (diff) | |
download | numpy-dd857489fcaa745ea569c523249fe37537bfe280.tar.gz |
Merge pull request #4342 from seberg/issue-4340
TST: do not use "ignore" to filter warnings
Diffstat (limited to 'numpy/lib/tests/test_nanfunctions.py')
-rw-r--r-- | numpy/lib/tests/test_nanfunctions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/tests/test_nanfunctions.py b/numpy/lib/tests/test_nanfunctions.py index af01a7167..df332dfb1 100644 --- a/numpy/lib/tests/test_nanfunctions.py +++ b/numpy/lib/tests/test_nanfunctions.py @@ -130,8 +130,8 @@ class TestNanFunctions_ArgminArgmax(TestCase): def test_result_values(self): for f, fcmp in zip(self.nanfuncs, [np.greater, np.less]): for row in _ndat: - with warnings.catch_warnings(): - warnings.simplefilter('ignore') + with warnings.catch_warnings(record=True): + warnings.simplefilter('always') ind = f(row) val = row[ind] # comparing with NaN is tricky as the result |