Skip to content

Commit

Permalink
Fix regression test for 2958
Browse files Browse the repository at this point in the history
  • Loading branch information
falbrechtskirchinger committed Apr 4, 2022
1 parent 4e5c9fb commit c96111f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/src/unit-regression2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,6 @@ TEST_CASE("regression tests 2")
{
std::string p = "/root";

// matching types
json test1;
test1[json::json_pointer(p)] = json::object();
CHECK(test1.dump() == "{\"root\":{}}");
Expand All @@ -724,10 +723,10 @@ TEST_CASE("regression tests 2")
test2[ordered_json::json_pointer(p)] = json::object();
CHECK(test2.dump() == "{\"root\":{}}");

// mixed type - the JSON Pointer is implicitly converted into a string "/root"
// json::json_pointer and ordered_json::json_pointer are the same type; behave as above
ordered_json test3;
test3[json::json_pointer(p)] = json::object();
CHECK(test3.dump() == "{\"/root\":{}}");
CHECK(test3.dump() == "{\"root\":{}}");
}

SECTION("issue #2982 - to_{binary format} does not provide a mechanism for specifying a custom allocator for the returned type")
Expand Down

0 comments on commit c96111f

Please sign in to comment.