summaryrefslogtreecommitdiff
path: root/pylint/test/functional/unneeded_not.txt
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/functional/unneeded_not.txt')
-rw-r--r--pylint/test/functional/unneeded_not.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/pylint/test/functional/unneeded_not.txt b/pylint/test/functional/unneeded_not.txt
index cf27618..b962293 100644
--- a/pylint/test/functional/unneeded_not.txt
+++ b/pylint/test/functional/unneeded_not.txt
@@ -10,3 +10,4 @@ unneeded-not:26:unneeded_not:Consider changing "not bool_var == True" to "bool_v
unneeded-not:28:unneeded_not:Consider changing "not bool_var == False" to "bool_var != False"
unneeded-not:30:unneeded_not:Consider changing "not bool_var != True" to "bool_var == True"
unneeded-not:32:unneeded_not:Consider changing "not True == True" to "True != True"
+unneeded-not:34:unneeded_not:Consider changing "not 2 in [3, 4]" to "2 not in [3, 4]"