diff options
author | dhuard <dhuard@localhost> | 2008-04-25 18:13:46 +0000 |
---|---|---|
committer | dhuard <dhuard@localhost> | 2008-04-25 18:13:46 +0000 |
commit | b64dbce29b86a1ab206029ae397091e067645ad9 (patch) | |
tree | ea2fa41b94a207aabc4a50c098c57054ef5ebca6 /numpy/lib/tests/test_function_base.py | |
parent | bb61ebca77749343bea38bcc7e8eaaee667a4f02 (diff) | |
download | numpy-b64dbce29b86a1ab206029ae397091e067645ad9.tar.gz |
Added an ignore warning in the test to avoid buildbot messages.
Diffstat (limited to 'numpy/lib/tests/test_function_base.py')
-rw-r--r-- | numpy/lib/tests/test_function_base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/lib/tests/test_function_base.py b/numpy/lib/tests/test_function_base.py index ba0c5c860..469f35e58 100644 --- a/numpy/lib/tests/test_function_base.py +++ b/numpy/lib/tests/test_function_base.py @@ -428,6 +428,8 @@ class TestSinc(NumpyTestCase): assert_array_almost_equal(w,flipud(w),7) class TestHistogram(NumpyTestCase): + import warnings + warnings.simplefilter('ignore', FutureWarning) def check_simple(self): n=100 v=rand(n) |