diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-08-05 12:40:04 +0200 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-08-07 14:43:19 +0200 |
commit | ed6f31f4c9939d6cc8d4d317d561a94545750b0b (patch) | |
tree | 122e2a01c4a56b0fc25d94236d459101ffb80f65 /test/buildtool/logging | |
parent | 4989605b096701fee6f1049bdad0827f81d9fb00 (diff) | |
download | justbuild-ed6f31f4c9939d6cc8d4d317d561a94545750b0b.tar.gz |
Replace classic C boolean operators with keywords
! => not; && => and, || => or
Diffstat (limited to 'test/buildtool/logging')
-rw-r--r-- | test/buildtool/logging/log_sink_file.test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/buildtool/logging/log_sink_file.test.cpp b/test/buildtool/logging/log_sink_file.test.cpp index 069480be..2dde74b8 100644 --- a/test/buildtool/logging/log_sink_file.test.cpp +++ b/test/buildtool/logging/log_sink_file.test.cpp @@ -114,7 +114,7 @@ TEST_CASE("LogSinkFile", "[logging]") { for (auto const& line : lines) { CHECK_THAT( line, - Catch::Matchers::ContainsSubstring("somecontent") || + Catch::Matchers::ContainsSubstring("somecontent") or Catch::Matchers::ContainsSubstring("this is thread")); } } |