mirror of
https://github.com/trafi/maybe-result-cpp
synced 2024-11-22 02:32:02 +01:00
Fix return type in tests.
This commit is contained in:
parent
eb446874f5
commit
26145fdd1e
@ -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());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user