summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_regression.py
diff options
context:
space:
mode:
authordhuard <dhuard@localhost>2010-02-16 18:52:08 +0000
committerdhuard <dhuard@localhost>2010-02-16 18:52:08 +0000
commit624b33dc6a83dc9b7933a99a191378547d442324 (patch)
treed985eba44164894daeca3505ada12bb779ee49b4 /numpy/lib/tests/test_regression.py
parent8cdc4520e7de79f2edaa261f8de53211d26dbea7 (diff)
downloadnumpy-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.py10
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"""