summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_histograms.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/tests/test_histograms.py')
-rw-r--r--numpy/lib/tests/test_histograms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/tests/test_histograms.py b/numpy/lib/tests/test_histograms.py
index 67a94877d..49c0d9720 100644
--- a/numpy/lib/tests/test_histograms.py
+++ b/numpy/lib/tests/test_histograms.py
@@ -544,8 +544,8 @@ class TestHistogramOptimBinNums(object):
a, b = np.histogram(outlier_dataset, estimator)
assert_equal(len(a), numbins)
- def test_scott_vs_ise(self):
- """Verify that Scott's rule and the ISE based method converges for normally distributed data"""
+ def test_scott_vs_stone(self):
+ """Verify that Scott's rule and Stone's rule converges for normally distributed data"""
def nbins_ratio(seed, size):
rng = np.random.RandomState(seed)