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/multithreading/async_map_consumer.test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/buildtool/multithreading/async_map_consumer.test.cpp') diff --git a/test/buildtool/multithreading/async_map_consumer.test.cpp b/test/buildtool/multithreading/async_map_consumer.test.cpp index a2de18b7..f65c7851 100644 --- a/test/buildtool/multithreading/async_map_consumer.test.cpp +++ b/test/buildtool/multithreading/async_map_consumer.test.cpp @@ -237,7 +237,7 @@ TEST_CASE("ErrorPropagation", "[async_map_consumer]") { [&fail_cont_counter]() { fail_cont_counter++; }); } CHECK(execution_failed); - CHECK(!consumer_called); + CHECK(not consumer_called); CHECK(fail_cont_counter == 1); } -- cgit v1.2.3