summaryrefslogtreecommitdiff
path: root/numpy/polynomial/tests/test_polyutils.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2014-08-04 14:32:34 -0600
committerCharles Harris <charlesr.harris@gmail.com>2014-08-04 14:32:34 -0600
commit192f025ce5280dffbdd361e3ee0645aa08764156 (patch)
tree5d396aa22ec11fcb3000600d8e43d1ee1bfec7f6 /numpy/polynomial/tests/test_polyutils.py
parent74bd706d6fccb0512b276a038274680fd6568b75 (diff)
parentf9c6398d4f021e9509e19157a0d5ee72b27a8c2a (diff)
downloadnumpy-192f025ce5280dffbdd361e3ee0645aa08764156.tar.gz
Merge pull request #4924 from charris/pep8-numpy-polynomial
Pep8 numpy polynomial
Diffstat (limited to 'numpy/polynomial/tests/test_polyutils.py')
-rw-r--r--numpy/polynomial/tests/test_polyutils.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/numpy/polynomial/tests/test_polyutils.py b/numpy/polynomial/tests/test_polyutils.py
index c77ee2435..974e2e09a 100644
--- a/numpy/polynomial/tests/test_polyutils.py
+++ b/numpy/polynomial/tests/test_polyutils.py
@@ -5,7 +5,9 @@ from __future__ import division, absolute_import, print_function
import numpy as np
import numpy.polynomial.polyutils as pu
-from numpy.testing import *
+from numpy.testing import (
+ TestCase, assert_almost_equal, assert_raises,
+ assert_equal, assert_, run_module_suite)
class TestMisc(TestCase):
@@ -101,3 +103,7 @@ class TestDomain(TestCase):
tgt = [-1 + 1j, 1 - 1j]
res = pu.mapparms(dom1, dom2)
assert_almost_equal(res, tgt)
+
+
+if __name__ == "__main__":
+ run_module_suite()