diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2007-10-02 07:54:11 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2007-10-02 07:54:11 +0000 |
commit | 610438f1fb2436cec44b9ddd451daa67d846cdd0 (patch) | |
tree | 05dd27f00f161ee3a54b1dcf5f3b7f161cf8a68c /numpy/lib/tests/test_polynomial.py | |
parent | b4bb63c29c8bb81bcc2d2070f1bd3b81253acd85 (diff) | |
download | numpy-610438f1fb2436cec44b9ddd451daa67d846cdd0.tar.gz |
Rename test classes to CapWords.
Diffstat (limited to 'numpy/lib/tests/test_polynomial.py')
-rw-r--r-- | numpy/lib/tests/test_polynomial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_polynomial.py b/numpy/lib/tests/test_polynomial.py index d7c2c917d..c9a230775 100644 --- a/numpy/lib/tests/test_polynomial.py +++ b/numpy/lib/tests/test_polynomial.py @@ -76,7 +76,7 @@ poly1d([ 2.]) from numpy.testing import * import numpy as N -class test_docs(NumpyTestCase): +class TestDocs(NumpyTestCase): def check_doctests(self): return self.rundocs() def check_roots(self): |