From e886b6b8a6f165c57498760e3e8a3e40dfcec4b7 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 9 Jan 2023 10:26:01 -0700 Subject: [PATCH] [test-draw] Use a larger scale A scale of 20 is in the noise category for us. Using a larger scale makes the test pass. --- test/api/test-draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/api/test-draw.c b/test/api/test-draw.c index ab8b3f51a..051bbef5e 100644 --- a/test/api/test-draw.c +++ b/test/api/test-draw.c @@ -1140,7 +1140,7 @@ test_hb_draw_compare_ot_ft (void) hb_face_t *face = hb_test_open_font_file ("fonts/cff1_flex.otf"); hb_font_t *font = hb_font_create (face); - hb_font_set_scale (font, 20, 20); + hb_font_set_scale (font, 100, 100); hb_font_draw_glyph (font, 1, funcs, &draw_data); draw_data.str[draw_data.consumed] = '\0';