diff options
| -rw-r--r-- | tests/functional/n/no/no_else_break.py | 2 | ||||
| -rw-r--r-- | tests/functional/n/no/no_else_continue.py | 2 | ||||
| -rw-r--r-- | tests/functional/n/no/no_else_raise.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/functional/n/no/no_else_break.py b/tests/functional/n/no/no_else_break.py index cf23f313a..d40f19403 100644 --- a/tests/functional/n/no/no_else_break.py +++ b/tests/functional/n/no/no_else_break.py @@ -1,4 +1,4 @@ -""" Test that superfluous else return are detected. """ +""" Test that superfluous else break are detected. """ # pylint:disable=invalid-name,missing-docstring,unused-variable diff --git a/tests/functional/n/no/no_else_continue.py b/tests/functional/n/no/no_else_continue.py index 37f70f121..a6599c336 100644 --- a/tests/functional/n/no/no_else_continue.py +++ b/tests/functional/n/no/no_else_continue.py @@ -1,4 +1,4 @@ -""" Test that superfluous else return are detected. """ +""" Test that superfluous else continue are detected. """ # pylint:disable=invalid-name,missing-docstring,unused-variable diff --git a/tests/functional/n/no/no_else_raise.py b/tests/functional/n/no/no_else_raise.py index ae807fae3..9a54dfc9f 100644 --- a/tests/functional/n/no/no_else_raise.py +++ b/tests/functional/n/no/no_else_raise.py @@ -1,4 +1,4 @@ -""" Test that superfluous else return are detected. """ +""" Test that superfluous else raise are detected. """ # pylint:disable=invalid-name,missing-docstring,unused-variable,raise-missing-from |
