From 88feb3f25c341e10f4a631685a0cec2aa27946d9 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Sun, 13 Oct 2024 19:01:50 +1000 Subject: [PATCH] test: fix double parsing test We should check that we actually have a double here... Part-of: --- test/test-quirks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-quirks.c b/test/test-quirks.c index 46aa4586..e8202b5b 100644 --- a/test/test-quirks.c +++ b/test/test-quirks.c @@ -1239,7 +1239,7 @@ START_TEST(quirks_parse_double_attr) if (!rc) continue; - ck_assert_int_eq(v, t->val); + ck_assert_double_eq(v, t->val); } } }