diff options
Diffstat (limited to 'src/test/main.cpp')
-rw-r--r-- | src/test/main.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/test/main.cpp b/src/test/main.cpp index 19a8d6e..0e1bc75 100644 --- a/src/test/main.cpp +++ b/src/test/main.cpp @@ -1,7 +1,7 @@ -#include <crepe/api/Config.h> - #include <gtest/gtest.h> +#include <crepe/api/Config.h> + using namespace crepe; using namespace testing; @@ -11,7 +11,11 @@ public: // This function is called before each test void OnTestStart(const TestInfo &) override { - cfg.log.level = Log::Level::WARNING; + cfg = { + .log = { + .level = Log::Level::WARNING, + }, + }; } }; @@ -23,4 +27,3 @@ int main(int argc, char ** argv) { return RUN_ALL_TESTS(); } - |