test-xml: Use ASSERT_OK() instead of ASSERT_GE()

Follow up for 7a58b45017
This commit is contained in:
Daan De Meyer
2025-06-30 13:52:08 +02:00
committed by Luca Boccassi
parent 3725e17408
commit 86e780759d

View File

@@ -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);