diff --git a/test/cpp-utils/either_test.cpp b/test/cpp-utils/either_test.cpp index c1daeb66..92e8cd7a 100644 --- a/test/cpp-utils/either_test.cpp +++ b/test/cpp-utils/either_test.cpp @@ -1037,22 +1037,22 @@ TEST(EitherTest, givenRight_whenModified_thenValueIsChanged) { TEST(EitherTest, canEmplaceConstructLeft) { test_with_matrix({ [] (const auto& test) { - either, tuple> a(2, 3); + either, tuple> a(2, 3); test(a); } }, - EXPECT_IS_LEFT, tuple>(tuple(2, 3)) + EXPECT_IS_LEFT, tuple>(tuple(2, 3)) ); } TEST(EitherTest, canEmplaceConstructRight) { test_with_matrix({ [] (const auto& test) { - either, tuple> a(2, 3, 4); + either, tuple> a(2, "3", 4); test(a); } }, - EXPECT_IS_RIGHT, tuple>(tuple(2, 3, 4)) + EXPECT_IS_RIGHT, tuple>(tuple(2, "3", 4)) ); }