This commit is contained in:
Sebastian Messmer 2018-12-25 07:43:41 +01:00
parent 7df156b74a
commit 9aa0dbfc19
1 changed files with 2 additions and 1 deletions

View File

@ -69,7 +69,8 @@ std::vector<std::function<void(either<Left, Right>&)>> EXPECT_IS_LEFT(const Left
}, [&] (auto& obj) {
EXPECT_ANY_THROW(std::move(obj).right());
}, [&] (auto& obj) {
EXPECT_EQ(expected, obj.left_opt().value());
auto a = obj.left_opt();
EXPECT_EQ(expected, a.value());
}, [&] (auto& obj) {
auto a = std::move(obj).left_opt();
EXPECT_EQ(expected, a.value());