From 73871fd756206abe1769137bf094f3d108850aa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klaim=20=28Jo=C3=ABl=20Lamotte=29?= <142265+Klaim@users.noreply.github.com> Date: Wed, 21 Feb 2024 17:07:13 +0100 Subject: [PATCH] Fixed tests after renamed xparrow to sparrow --- test/main.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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); }