From fb602f331bb356aca4b2ec63c7db4da34773a381 Mon Sep 17 00:00:00 2001 From: allen Date: Mon, 14 Oct 2019 17:32:24 +0800 Subject: [PATCH] update the test case of json_object_update_recursive --- test/suites/api/test_object.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/suites/api/test_object.c b/test/suites/api/test_object.c index 0493e98..a646ae9 100644 --- a/test/suites/api/test_object.c +++ b/test/suites/api/test_object.c @@ -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"));