From ed6f31f4c9939d6cc8d4d317d561a94545750b0b Mon Sep 17 00:00:00 2001 From: Maksim Denisov Date: Mon, 5 Aug 2024 12:40:04 +0200 Subject: Replace classic C boolean operators with keywords ! => not; && => and, || => or --- test/buildtool/logging/log_sink_file.test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/buildtool/logging') 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")); } } -- cgit v1.2.3