summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_regression.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2010-07-07 04:31:55 +0000
committerCharles Harris <charlesr.harris@gmail.com>2010-07-07 04:31:55 +0000
commitcda4d595f074f09d8cf113d37cb9c8079c6752d8 (patch)
tree14156314d4f206bd7f169cdf2e6220ee86cfc160 /numpy/lib/tests/test_regression.py
parenta5b4a598d0ef164dba7e0876133c3ea78b96aab8 (diff)
downloadnumpy-cda4d595f074f09d8cf113d37cb9c8079c6752d8.tar.gz
Don't deprecated bias keyword, just add ddof.
Diffstat (limited to 'numpy/lib/tests/test_regression.py')
-rw-r--r--numpy/lib/tests/test_regression.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/tests/test_regression.py b/numpy/lib/tests/test_regression.py
index c5483556c..a8804ac3a 100644
--- a/numpy/lib/tests/test_regression.py
+++ b/numpy/lib/tests/test_regression.py
@@ -14,8 +14,8 @@ class TestRegression(TestCase):
"""Ticket #91"""
x = np.random.random((3,3))
y = x.copy()
- np.cov(x, rowvar=1, ddof=1)
- np.cov(y, rowvar=0, ddof=1)
+ np.cov(x, rowvar=1)
+ np.cov(y, rowvar=0)
assert_array_equal(x,y)
def test_mem_digitize(self,level=rlevel):