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 b962293..13b3512 100644
--- a/pylint/test/functional/unneeded_not.txt
+++ b/pylint/test/functional/unneeded_not.txt
@@ -11,3 +11,4 @@ unneeded-not:28:unneeded_not:Consider changing "not bool_var == False" to "bool_
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]"
+unneeded-not:36:unneeded_not:Consider changing "not someint is 'test'" to "someint is not 'test'"