diff options
Diffstat (limited to 'numpy/testing/parametric.py')
-rw-r--r-- | numpy/testing/parametric.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/testing/parametric.py b/numpy/testing/parametric.py index e6f2b3390..27b9d23c6 100644 --- a/numpy/testing/parametric.py +++ b/numpy/testing/parametric.py @@ -61,9 +61,9 @@ class _ParametricTestCase(unittest.TestCase): _shareParTestPrefix = 'testsp' def __init__(self, methodName = 'runTest'): - warnings.warn("ParametricTestCase will be removed in the next NumPy " + warnings.warn("ParametricTestCase will be removed in the next NumPy " "release", DeprecationWarning) - unittest.TestCase.__init__(self, methodName) + unittest.TestCase.__init__(self, methodName) def exec_test(self,test,args,result): """Execute a single test. Returns a success boolean""" |