diff --git a/test/src/unit-conversions.cpp b/test/src/unit-conversions.cpp index 0cdecdd79..185012621 100644 --- a/test/src/unit-conversions.cpp +++ b/test/src/unit-conversions.cpp @@ -1585,7 +1585,7 @@ TEST_CASE("std::optional") std::optional opt_null; CHECK(json(opt_null) == j_null); - //CHECK(std::optional(j_null) == std::nullopt); + CHECK(std::optional(j_null) == std::nullopt); } SECTION("string")