summaryrefslogtreecommitdiffstats
path: root/document/src/tests/documentselectparsertest.cpp
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-08-12 22:52:32 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-08-13 12:38:58 +0000
commit92a4b42957394552321a7bb3490e9539cff6992d (patch)
tree7c8d0ebd7a987f4542fefcff25a7205b86dd0347 /document/src/tests/documentselectparsertest.cpp
parent89414c996e241819648973ab70e34e04bb68447d (diff)
GC unused code.
Diffstat (limited to 'document/src/tests/documentselectparsertest.cpp')
-rw-r--r--document/src/tests/documentselectparsertest.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/document/src/tests/documentselectparsertest.cpp b/document/src/tests/documentselectparsertest.cpp
index b75d094459b..6fd9ab80faa 100644
--- a/document/src/tests/documentselectparsertest.cpp
+++ b/document/src/tests/documentselectparsertest.cpp
@@ -1002,7 +1002,7 @@ TEST_F(DocumentSelectParserTest, testBodyFieldDetection)
select::BodyFieldDetector detector(*_repo);
root->visit(detector);
- EXPECT_TRUE(!detector.foundBodyField);
+ EXPECT_FALSE(detector.foundBodyField);
EXPECT_TRUE(detector.foundHeaderField);
}
@@ -1011,7 +1011,7 @@ TEST_F(DocumentSelectParserTest, testBodyFieldDetection)
select::BodyFieldDetector detector(*_repo);
root->visit(detector);
- EXPECT_TRUE(!detector.foundBodyField);
+ EXPECT_FALSE(detector.foundBodyField);
EXPECT_TRUE(detector.foundHeaderField);
}
@@ -1020,7 +1020,7 @@ TEST_F(DocumentSelectParserTest, testBodyFieldDetection)
select::BodyFieldDetector detector(*_repo);
root->visit(detector);
- EXPECT_TRUE(!detector.foundBodyField);
+ EXPECT_FALSE(detector.foundBodyField);
EXPECT_TRUE(detector.foundHeaderField);
}
@@ -1029,7 +1029,7 @@ TEST_F(DocumentSelectParserTest, testBodyFieldDetection)
select::BodyFieldDetector detector(*_repo);
root->visit(detector);
- EXPECT_TRUE(detector.foundBodyField);
+ EXPECT_FALSE(detector.foundBodyField);
}
{
@@ -1040,7 +1040,7 @@ TEST_F(DocumentSelectParserTest, testBodyFieldDetection)
select::BodyFieldDetector detector(*_repo);
root->visit(detector);
- EXPECT_TRUE(!detector.foundBodyField);
+ EXPECT_FALSE(detector.foundBodyField);
}
}