From: Michael Tremer Date: Thu, 30 Jan 2025 21:33:34 +0000 (+0000) Subject: tests: repo: Usual EQUALS macro to show the true figures X-Git-Tag: 0.9.30~237 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78fc14d40f60214d9e77ab0a42ca835afe8b2876;p=pakfire.git tests: repo: Usual EQUALS macro to show the true figures Signed-off-by: Michael Tremer --- diff --git a/tests/libpakfire/repo.c b/tests/libpakfire/repo.c index 93f2edbc..5e0d8811 100644 --- a/tests/libpakfire/repo.c +++ b/tests/libpakfire/repo.c @@ -44,7 +44,7 @@ static int test_scan(const struct test* t) { ASSERT_SUCCESS(pakfire_repo_scan(repo, 0)); // There should be one package in this repository now - ASSERT(pakfire_repo_count(repo) == 1); + ASSERT_EQUALS(pakfire_repo_count(repo), 1); // Allocate a temporary file f = test_mktemp(NULL);