mirror of
https://github.com/akheron/jansson.git
synced 2025-04-05 13:35:05 +00:00
update the test case of json_object_update_recursive
This commit is contained in:
parent
00d2d274bc
commit
fb602f331b
1 changed files with 1 additions and 3 deletions
|
@ -269,10 +269,8 @@ static void test_recursive_updates()
|
|||
json_decref(other);
|
||||
|
||||
/* check circular reference */
|
||||
object = json_pack("{s{s{si}}}", "foo", "bar", "baz", 2);
|
||||
object = json_pack("{s{s{s{si}}}}", "foo", "bar", "baz", "xxx", 2);
|
||||
other = json_pack("{s{s{si}}}", "foo", "bar", "baz", 2);
|
||||
json_object_set(json_object_get(json_object_get(object, "foo"), "bar"), "baz",
|
||||
json_object_get(other, "foo"));
|
||||
json_object_set(json_object_get(json_object_get(other, "foo"), "bar"), "baz",
|
||||
json_object_get(other, "foo"));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue