Skip to content

Commit

Permalink
Fixed tests after renamed xparrow to sparrow
Browse files Browse the repository at this point in the history
  • Loading branch information
Klaim committed Feb 21, 2024
1 parent f6f16f4 commit 73871fd
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@
#include "doctest/doctest.h"

#include <format>
#include <sstream>

#include <xparrow/xparrow_version.hpp>
#include <sparrow/sparrow_version.hpp>

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);
}

0 comments on commit 73871fd

Please sign in to comment.