diff --git a/test/unit/main.cpp b/test/unit/main.cpp index 5a64ffb..a086582 100644 --- a/test/unit/main.cpp +++ b/test/unit/main.cpp @@ -1,3 +1,5 @@ +#include + #define CATCH_CONFIG_MAIN #include diff --git a/test/unit/repository.cpp b/test/unit/repository.cpp index b6e3824..1645bc4 100644 --- a/test/unit/repository.cpp +++ b/test/unit/repository.cpp @@ -16,7 +16,6 @@ TEST_CASE("read-only", "[repository]") { SKIP(fmt::format("{}", store.error())); } - fmt::println("db path: {}", store->db_path().string()); { auto results = store->query({{}, {}, {}, {}, {}}); if (!results) { @@ -29,7 +28,6 @@ TEST_CASE("read-only", "[repository]") { //} } - fmt::println(""); { auto results = store->query({"mch", {}, {}, {}, {}}); if (!results) { @@ -42,7 +40,6 @@ TEST_CASE("read-only", "[repository]") { //} } - fmt::println(""); { auto results = store->query({{}, "v7", {}, {}, {}}); if (!results) { @@ -55,7 +52,6 @@ TEST_CASE("read-only", "[repository]") { //} } - fmt::println(""); { auto results = store->query({{}, "24.7", "v1-rc1", {}, "a100"}); if (!results) { @@ -68,7 +64,6 @@ TEST_CASE("read-only", "[repository]") { //} } - fmt::println(""); { auto results = store->query({"wombat", {}, {}, {}, {}}); if (!results) {