Skip to content

Commit 44f7c9a

Browse files
Suppress tidy warning
1 parent 3f45968 commit 44f7c9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/src/unit-readme.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ TEST_CASE("README" * doctest::skip())
171171

172172
// find an entry
173173
CHECK(o.find("foo") != o.end());
174-
if (o.find("foo") != o.end())
174+
if (o.find("foo") != o.end()) // NOLINT(readability-container-contains)
175175
{
176176
// there is an entry with key "foo"
177177
}

0 commit comments

Comments
 (0)