diff --git a/tests/result_into_err_tests.cpp b/tests/result_into_err_tests.cpp index 092ba38..8ff78d6 100644 --- a/tests/result_into_err_tests.cpp +++ b/tests/result_into_err_tests.cpp @@ -28,7 +28,7 @@ TEST_CASE("result_into_err") SECTION("converts result::err to result::err") { auto a = result::err(42); - auto b = a.into_err>(); + auto b = a.into_err(); REQUIRE(!b); REQUIRE(42 == b.err_value()); }