diff options
Diffstat (limited to 'numpy/testing')
-rw-r--r-- | numpy/testing/tests/test_decorators.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/testing/tests/test_decorators.py b/numpy/testing/tests/test_decorators.py index 721c0ef7e..02cd9fb88 100644 --- a/numpy/testing/tests/test_decorators.py +++ b/numpy/testing/tests/test_decorators.py @@ -110,7 +110,7 @@ def test_skip_generators_hardcoded(): for j in g2(10): pass except KnownFailureException: - raise Exception('Marked incorretly as known failure') + raise Exception('Marked incorrectly as known failure') except DidntSkipException: pass @@ -144,7 +144,7 @@ def test_skip_generators_callable(): for j in g2(10): pass except KnownFailureException: - raise Exception('Marked incorretly as known failure') + raise Exception('Marked incorrectly as known failure') except DidntSkipException: pass |