From 5793142861b312bbe0694e00cf3404fc4fbe791a Mon Sep 17 00:00:00 2001 From: Andrei Epure Date: Fri, 26 Apr 2013 21:33:47 +0300 Subject: [PATCH] test:suites:api: modified error message In the "/* perform the same update again */" area the error message should be "unable to update an non-empty object" instead of "unable to update an empty object". Signed-off-by: Andrei Epure --- test/suites/api/test_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/suites/api/test_object.c b/test/suites/api/test_object.c index b317745..31cadc3 100644 --- a/test/suites/api/test_object.c +++ b/test/suites/api/test_object.c @@ -94,7 +94,7 @@ static void test_update() /* perform the same update again */ if(json_object_update(object, other)) - fail("unable to update an empty object"); + fail("unable to update a non-empty object"); if(json_object_size(object) != 5) fail("invalid size after update");