1
1
Fork 0
mirror of https://github.com/trafi/maybe-result-cpp synced 2024-05-08 23:16:11 +02:00

Fix return type in tests.

This commit is contained in:
Nerijus Arlauskas 2016-09-22 15:54:52 +03:00
parent eb446874f5
commit 26145fdd1e

View File

@ -28,7 +28,7 @@ TEST_CASE("result_into_err")
SECTION("converts result<A, E>::err to result<void, E>::err")
{
auto a = result<A, int>::err(42);
auto b = a.into_err<result<void, int>>();
auto b = a.into_err<void>();
REQUIRE(!b);
REQUIRE(42 == b.err_value());
}