From: Björn Esser Date: Mon, 18 May 2020 15:00:17 +0000 (+0200) Subject: test_deep_copy: Fix assertion value. X-Git-Tag: json-c-0.15-20200726~43^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F618%2Fhead;p=thirdparty%2Fjson-c.git test_deep_copy: Fix assertion value. --- diff --git a/tests/test_deep_copy.c b/tests/test_deep_copy.c index b6c1b999..34ef1fe5 100644 --- a/tests/test_deep_copy.c +++ b/tests/test_deep_copy.c @@ -126,7 +126,7 @@ int main(int argc, char **argv) src3 = json_tokener_parse(json_str3); assert(src1 != NULL); - assert(src1 != NULL); + assert(src2 != NULL); assert(src3 != NULL); printf("PASSED - loaded input data\n");