commit f6c286d79afb970ec6bc01801fb0ab2d8e2a4084
parent 148faf72bf58ed05d54010df71286ee462d5b870
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Sat, 6 Nov 2021 19:41:17 +0300
tests: fixed copy-paste error in report
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/testcurl/test_toolarge.c b/src/testcurl/test_toolarge.c
@@ -465,7 +465,7 @@ ahcCheck (void *cls,
mhdErrorExitDesc ("'upload_data' is not NULL");
if (NULL == upload_data_size)
- mhdErrorExitDesc ("'upload_data_size' pointer is not NULL");
+ mhdErrorExitDesc ("'upload_data_size' pointer is NULL");
if (0 != *upload_data_size)
mhdErrorExitDesc ("'*upload_data_size' value is not zero");
diff --git a/src/testcurl/test_tricky.c b/src/testcurl/test_tricky.c
@@ -393,7 +393,7 @@ ahcCheck (void *cls,
mhdErrorExitDesc ("'upload_data' is not NULL");
if (NULL == upload_data_size)
- mhdErrorExitDesc ("'upload_data_size' pointer is not NULL");
+ mhdErrorExitDesc ("'upload_data_size' pointer is NULL");
if (0 != *upload_data_size)
mhdErrorExitDesc ("'*upload_data_size' value is not zero");