Refactor assertion and remove redundant local variable

This commit is contained in:
Krzysiek Karbowiak 2022-03-30 15:46:54 +02:00
parent f12d1ac577
commit 58a32fea40

View File

@ -1417,13 +1417,8 @@ TEST_CASE("regression tests 1")
auto p3 = R"([{"op": "copy",
"from": "/one/two/three",
"path": "/a/b/c"}])"_json;
CHECK_THROWS_AS(model.patch(p3), json::out_of_range&);
auto p4 = R"([{"op": "copy",
"from": "/one/two/three",
"path": "/a/b/c"}])"_json;
CHECK_THROWS_WITH(model.patch(p4),
"[json.exception.out_of_range.403] key 'a' not found");
CHECK_THROWS_WITH_AS(model.patch(p3),
"[json.exception.out_of_range.403] key 'a' not found", json::out_of_range&);
}
SECTION("issue #961 - incorrect parsing of indefinite length CBOR strings")