diff --git a/src/fuc2.cpp b/src/fuc2.cpp index c2ed540..32d8c03 100644 --- a/src/fuc2.cpp +++ b/src/fuc2.cpp @@ -27,8 +27,7 @@ namespace fuc2 { test_sig.function_name()); } - void CHECK(bool test, const std::string &message, const std::source_location location) - { + void CHECK(bool test, const std::string &message, const std::source_location location) { if(!test) { auto test_value = fmt::format("{} != true", test); throw std::runtime_error( diff --git a/tests/sample1.cpp b/tests/sample1.cpp index e22e337..ff82677 100644 --- a/tests/sample1.cpp +++ b/tests/sample1.cpp @@ -56,7 +56,6 @@ namespace sample1 { BLOWS_UP(runner, "pop_front empty should crash"); } - fuc2::Set TESTS{ .name="std::deque basic operations", .options={ .fail_fast=false },