diff --git a/test/main.cpp b/test/main.cpp index 2c0103c66..116262d4f 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -16,12 +16,11 @@ #include "doctest/doctest.h" #include -#include -#include +#include TEST_CASE("version is readable") { - using namespace xparrow; - [[maybe_unused]] const std::string printable_version = std::format("xparrow version : {}.{}.{}", XPARROW_VERSION_MAJOR, XPARROW_VERSION_MINOR, XPARROW_VERSION_PATCH); + using namespace sparrow; + [[maybe_unused]] const std::string printable_version = std::format("xparrow version : {}.{}.{}", SPARROW_VERSION_MAJOR, SPARROW_VERSION_MINOR, SPARROW_VERSION_PATCH); }