diff options
author | Tim Leslie <tim.leslie@gmail.com> | 2006-03-13 07:35:40 +0000 |
---|---|---|
committer | Tim Leslie <tim.leslie@gmail.com> | 2006-03-13 07:35:40 +0000 |
commit | 8a65c256de43db750357e7ac468352b06c960a25 (patch) | |
tree | 8d93563ea5c9102398575e0aa94f916c95f23303 /numpy/lib/tests/test_polynomial.py | |
parent | 7ed95441ce78c441079120c49de159e8beb337fa (diff) | |
download | numpy-8a65c256de43db750357e7ac468352b06c960a25.tar.gz |
update tests to all run correctly
Diffstat (limited to 'numpy/lib/tests/test_polynomial.py')
-rw-r--r-- | numpy/lib/tests/test_polynomial.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/lib/tests/test_polynomial.py b/numpy/lib/tests/test_polynomial.py index 6813192c1..dac4d866f 100644 --- a/numpy/lib/tests/test_polynomial.py +++ b/numpy/lib/tests/test_polynomial.py @@ -73,6 +73,8 @@ poly1d([ 2.]) (poly1d([ 1., -1.]), poly1d([ 0.])) """ +from numpy.testing import * + import doctest def test_suite(level=1): return doctest.DocTestSuite() |