summaryrefslogtreecommitdiff
path: root/tests/checkers/unittest_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/checkers/unittest_base.py')
-rw-r--r--tests/checkers/unittest_base.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/checkers/unittest_base.py b/tests/checkers/unittest_base.py
index 9f0d5fd4f..46a9913a4 100644
--- a/tests/checkers/unittest_base.py
+++ b/tests/checkers/unittest_base.py
@@ -548,9 +548,6 @@ class TestComparison(CheckerTestCase):
node = astroid.extract_node("True == foo")
messages = (
MessageTest(
- "misplaced-comparison-constant", node=node, args=("foo == True",)
- ),
- MessageTest(
"singleton-comparison",
node=node,
args=(
@@ -565,9 +562,6 @@ class TestComparison(CheckerTestCase):
node = astroid.extract_node("False == foo")
messages = (
MessageTest(
- "misplaced-comparison-constant", node=node, args=("foo == False",)
- ),
- MessageTest(
"singleton-comparison",
node=node,
args=(
@@ -582,9 +576,6 @@ class TestComparison(CheckerTestCase):
node = astroid.extract_node("None == foo")
messages = (
MessageTest(
- "misplaced-comparison-constant", node=node, args=("foo == None",)
- ),
- MessageTest(
"singleton-comparison",
node=node,
args=("'None == foo'", "'None is foo'"),