diff --git a/tests/test_optional.cc b/tests/test_optional.cc index cc81e0c..2a9a734 100644 --- a/tests/test_optional.cc +++ b/tests/test_optional.cc @@ -19,7 +19,6 @@ BEGIN_TEST(int, char*[]) // accessing disengaged fails EXPECT_EXCEPTION(i = o.value(), BadOptionalAccess); - EXPECT_EXCEPTION(i = o.value(), std::logic_error); // value_or test EXPECT_EQUAL(i = o.value_or(234), 234);