diff options
author | luz.paz <luzpaz@users.noreply.github.com> | 2018-02-27 03:01:24 -0500 |
---|---|---|
committer | luz.paz <luzpaz@users.noreply.github.com> | 2018-02-27 03:01:47 -0500 |
commit | efc0e6438ac18175c9d9ae695374c945d4bd2211 (patch) | |
tree | d1e467c7730eae38f208b6589b7c2c39b7763743 /numpy/testing/nose_tools/parameterized.py | |
parent | 6462068ee40344ebe9a60b3ddcad0e9590d5a260 (diff) | |
download | numpy-efc0e6438ac18175c9d9ae695374c945d4bd2211.tar.gz |
DOC/MAINT: More misc. typos
Found via `codespell` and `grep`
Diffstat (limited to 'numpy/testing/nose_tools/parameterized.py')
-rw-r--r-- | numpy/testing/nose_tools/parameterized.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/testing/nose_tools/parameterized.py b/numpy/testing/nose_tools/parameterized.py index d094f7c7f..53e67517d 100644 --- a/numpy/testing/nose_tools/parameterized.py +++ b/numpy/testing/nose_tools/parameterized.py @@ -456,8 +456,8 @@ class parameterized(object): frame = stack[1] frame_locals = frame[0].f_locals - paramters = cls.input_as_callable(input)() - for num, p in enumerate(paramters): + parameters = cls.input_as_callable(input)() + for num, p in enumerate(parameters): name = name_func(f, num, p) frame_locals[name] = cls.param_as_standalone_func(p, f, name) frame_locals[name].__doc__ = doc_func(f, num, p) |