summaryrefslogtreecommitdiff
path: root/tests/functional/ext/code_style/code_style_consider_using_assignment_expr.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/ext/code_style/code_style_consider_using_assignment_expr.py')
-rw-r--r--tests/functional/ext/code_style/code_style_consider_using_assignment_expr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/ext/code_style/code_style_consider_using_assignment_expr.py b/tests/functional/ext/code_style/code_style_consider_using_assignment_expr.py
index 60d3f4d1b..4f9a83700 100644
--- a/tests/functional/ext/code_style/code_style_consider_using_assignment_expr.py
+++ b/tests/functional/ext/code_style/code_style_consider_using_assignment_expr.py
@@ -4,7 +4,7 @@ a1 = 2
if a1: # [consider-using-assignment-expr]
...
-# Do not suggest assignement expressions if assignment spans multiple lines
+# Do not suggest assignment expressions if assignment spans multiple lines
a2 = (
1,
)