summaryrefslogtreecommitdiff
path: root/pylint/test/functional/unneeded_not.txt
diff options
context:
space:
mode:
authorLaura M?dioni <laura.medioni@logilab.fr>2015-10-29 09:37:06 +0100
committerLaura M?dioni <laura.medioni@logilab.fr>2015-10-29 09:37:06 +0100
commitcb68a81eee457947b9750013c90bcfeb4eb22bcf (patch)
tree8b8cf0396b17cdadb2a3a73f72425f6c9e498c6a /pylint/test/functional/unneeded_not.txt
parentf17f2d9546c42bbf53bb75a77734df33d0c2e182 (diff)
downloadpylint-cb68a81eee457947b9750013c90bcfeb4eb22bcf.tar.gz
Fix crash with 'in' operator on unneeded-not
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]"