diff options
author | dhuard <dhuard@localhost> | 2010-02-16 18:52:08 +0000 |
---|---|---|
committer | dhuard <dhuard@localhost> | 2010-02-16 18:52:08 +0000 |
commit | 624b33dc6a83dc9b7933a99a191378547d442324 (patch) | |
tree | d985eba44164894daeca3505ada12bb779ee49b4 /numpy/lib/tests/test_regression.py | |
parent | 8cdc4520e7de79f2edaa261f8de53211d26dbea7 (diff) | |
download | numpy-624b33dc6a83dc9b7933a99a191378547d442324.tar.gz |
removed old behavior for the histogram function.
Diffstat (limited to 'numpy/lib/tests/test_regression.py')
-rw-r--r-- | numpy/lib/tests/test_regression.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/numpy/lib/tests/test_regression.py b/numpy/lib/tests/test_regression.py index 16add3295..5bdb0106f 100644 --- a/numpy/lib/tests/test_regression.py +++ b/numpy/lib/tests/test_regression.py @@ -98,16 +98,6 @@ class TestRegression(TestCase): tested = np.polyfit(x, y, 4) assert_array_almost_equal(ref, tested) - def test_hist_bins_as_list(self, level=rlevel): - """Ticket #632""" - import warnings - warnings.simplefilter('ignore', Warning) - try: - hist,edges = np.histogram([1,2,3,4],[1,2], new=False) - assert_array_equal(hist,[1,3]) - assert_array_equal(edges,[1,2]) - finally: - warnings.resetwarnings() def test_polydiv_type(self) : """Make polydiv work for complex types""" |