summaryrefslogtreecommitdiff
path: root/numpy/testing
diff options
context:
space:
mode:
authorJarrod Millman <millman@berkeley.edu>2008-09-02 20:32:38 +0000
committerJarrod Millman <millman@berkeley.edu>2008-09-02 20:32:38 +0000
commitd29107a248130bbb68ecac58d6720d716529141c (patch)
tree9e1408025c80d63fe9fa6151343a7b265ec3f654 /numpy/testing
parenta4a7966cf7191c28a7054127fd3717d6c760d556 (diff)
downloadnumpy-d29107a248130bbb68ecac58d6720d716529141c.tar.gz
reindenting prior to release
Diffstat (limited to 'numpy/testing')
-rw-r--r--numpy/testing/nosetester.py2
-rw-r--r--numpy/testing/parametric.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py
index d4e523c52..ae3a56094 100644
--- a/numpy/testing/nosetester.py
+++ b/numpy/testing/nosetester.py
@@ -164,7 +164,7 @@ class NoseTester(object):
pyversion = sys.version.replace('\n','')
print "Python version %s" % pyversion
print "nose version %d.%d.%d" % nose.__versioninfo__
-
+
def test(self, label='fast', verbose=1, extra_argv=None, doctests=False,
coverage=False, **kwargs):
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"""