diff options
Diffstat (limited to 'numpy/polynomial/tests/test_polynomial.py')
-rw-r--r-- | numpy/polynomial/tests/test_polynomial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/tests/test_polynomial.py b/numpy/polynomial/tests/test_polynomial.py index 1e63cc86d..d4baaea8a 100644 --- a/numpy/polynomial/tests/test_polynomial.py +++ b/numpy/polynomial/tests/test_polynomial.py @@ -97,7 +97,7 @@ class TestArithmetic(TestCase) : return x*(x**2 - 1) #check empty input - assert_equal(poly.polyval([], 1).size, 0) + assert_equal(poly.polyval([], [1]).size, 0) #check normal input) x = np.linspace(-1,1) |