missing CHECK_NOTHROW in unit-udt
This commit is contained in:
parent
1f3d2a3be7
commit
c22f2d41f3
1 changed files with 2 additions and 2 deletions
|
@ -730,6 +730,6 @@ TEST_CASE("Issue #924")
|
|||
// Prevent get<std::vector<Evil>>() to throw
|
||||
auto j = json::array();
|
||||
|
||||
(void) j.get<Evil>();
|
||||
(void) j.get<std::vector<Evil>>();
|
||||
CHECK_NOTHROW(j.get<Evil>());
|
||||
CHECK_NOTHROW(j.get<std::vector<Evil>>());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue