From 86e780759d8150503bac2e0387dd712f46103161 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Mon, 30 Jun 2025 13:52:08 +0200 Subject: [PATCH] test-xml: Use ASSERT_OK() instead of ASSERT_GE() Follow up for 7a58b45017c678a2907ece2676372fe6d71e365e --- src/test/test-xml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/test-xml.c b/src/test/test-xml.c index b1e102441a..1e133e2f5f 100644 --- a/src/test/test-xml.c +++ b/src/test/test-xml.c @@ -16,7 +16,7 @@ static void test_one(const char *data, ...) { const char *nn; t = xml_tokenize(&data, &name, &state, NULL); - ASSERT_GE(t, 0); + ASSERT_OK(t); tt = va_arg(ap, int); ASSERT_GE(tt, 0);