From 3db9c01b5c3472229ce1891c082ff73a7adcf329 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 27 Jun 2025 07:39:47 +0000 Subject: [PATCH] tests: Fix compiling the testsuite Signed-off-by: Michael Tremer --- tests/testsuite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testsuite.c b/tests/testsuite.c index 9807c64b..f61a3a53 100644 --- a/tests/testsuite.c +++ b/tests/testsuite.c @@ -85,7 +85,7 @@ static int test_run(int i, struct test* t) { // Create a HTTP client (if requested) if (t->flags & TEST_WANTS_HTTPCLIENT) { - r = pakfire_httpclient_create(&t->httpclient, t->ctx); + r = pakfire_httpclient_create(&t->httpclient, t->ctx, 0); if (r < 0) { LOG("ERROR: Could not initialize the HTTP client: %s\n", strerror(-r)); goto ERROR; -- 2.47.3