Browse Source

test_deep_copy: Fix assertion value.

tags/json-c-0.15-20200726
Björn Esser 5 years ago
parent
commit
3008401b2a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/test_deep_copy.c

+ 1
- 1
tests/test_deep_copy.c View File

@@ -126,7 +126,7 @@ int main(int argc, char **argv)
src3 = json_tokener_parse(json_str3); src3 = json_tokener_parse(json_str3);


assert(src1 != NULL); assert(src1 != NULL);
assert(src1 != NULL);
assert(src2 != NULL);
assert(src3 != NULL); assert(src3 != NULL);


printf("PASSED - loaded input data\n"); printf("PASSED - loaded input data\n");


Loading…
Cancel
Save