missing CHECK_NOTHROW in unit-udt

parent 1f3d2a3b
...@@ -730,6 +730,6 @@ TEST_CASE("Issue #924") ...@@ -730,6 +730,6 @@ TEST_CASE("Issue #924")
// Prevent get<std::vector<Evil>>() to throw // Prevent get<std::vector<Evil>>() to throw
auto j = json::array(); auto j = json::array();
(void) j.get<Evil>(); CHECK_NOTHROW(j.get<Evil>());
(void) j.get<std::vector<Evil>>(); CHECK_NOTHROW(j.get<std::vector<Evil>>());
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment