diff options
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r-- | numpy/testing/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index abb2956a1..012313618 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -1152,7 +1152,7 @@ def nulp_diff(x, y, dtype=None): t = np.common_type(x, y) if np.iscomplexobj(x) or np.iscomplexobj(y): - raise NotImplementerError("_nulp not implemented for complex array") + raise NotImplementedError("_nulp not implemented for complex array") x = np.array(x, dtype=t) y = np.array(y, dtype=t) |