fixed VersionTest.cpp

This commit is contained in:
Sascha Kühl 2025-07-18 15:34:03 +02:00
parent 77c72ca23f
commit f897363297
1 changed files with 1 additions and 1 deletions

View File

@ -58,5 +58,5 @@ TEST_CASE("Test version parsing", "[version][parse]") {
const auto v3 = version::from_string("a.b.c");
REQUIRE(v3.is_error());
REQUIRE(v3.err().message() == "Invalid version string");
REQUIRE(v3.err().error_code() == "Invalid version string");
}