Blame SOURCES/json-c-0.14-test_deep_copy_fix_assertion_value.patch

2496d2
From 3008401b2a8f5b25bf5665cafa22b335d9ffdb3a Mon Sep 17 00:00:00 2001
2496d2
From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= <besser82@fedoraproject.org>
2496d2
Date: Mon, 18 May 2020 17:00:17 +0200
2496d2
Subject: [PATCH] test_deep_copy: Fix assertion value.
2496d2
2496d2
---
2496d2
 tests/test_deep_copy.c | 2 +-
2496d2
 1 file changed, 1 insertion(+), 1 deletion(-)
2496d2
2496d2
diff --git a/tests/test_deep_copy.c b/tests/test_deep_copy.c
2496d2
index b6c1b999f4..34ef1fe5d3 100644
2496d2
--- a/tests/test_deep_copy.c
2496d2
+++ b/tests/test_deep_copy.c
2496d2
@@ -126,7 +126,7 @@ int main(int argc, char **argv)
2496d2
 	src3 = json_tokener_parse(json_str3);
2496d2
 
2496d2
 	assert(src1 != NULL);
2496d2
-	assert(src1 != NULL);
2496d2
+	assert(src2 != NULL);
2496d2
 	assert(src3 != NULL);
2496d2
 
2496d2
 	printf("PASSED - loaded input data\n");