From 58cb4d9f73f1292454e3673d5e7ae5a58a566522 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 11 Jul 2018 16:44:21 +0200 Subject: [PATCH] Minor --- test/api/test-ot-math.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/api/test-ot-math.c b/test/api/test-ot-math.c index 0ca5566df..d071c8895 100644 --- a/test/api/test-ot-math.c +++ b/test/api/test-ot-math.c @@ -396,8 +396,8 @@ test_get_min_connector_overlap (void) initFreeType(); openFont("fonts/MathTestFontEmpty.otf"); - g_assert_cmpint(hb_ot_math_get_min_connector_overlap(hb_font, FALSE), ==, 0); // MathVariants not available - g_assert_cmpint(hb_ot_math_get_min_connector_overlap(hb_font, TRUE), ==, 0); // MathVariants not available + g_assert_cmpint(hb_ot_math_get_min_connector_overlap(hb_font, HB_DIRECTION_LTR), ==, 0); // MathVariants not available + g_assert_cmpint(hb_ot_math_get_min_connector_overlap(hb_font, HB_DIRECTION_TTB), ==, 0); // MathVariants not available closeFont(); openFont("fonts/MathTestFontPartial1.otf");