Commit 61f56626 authored by Tarcísio Ladeia de Oliveira's avatar Tarcísio Ladeia de Oliveira Committed by Alexandre Julliard

gdi32/tests: Fix assertion message.

parent c5e23886
......@@ -6520,7 +6520,7 @@ static void test_max_height(void)
r = GetTextMetricsA(hdc, &tm1);
ok(r, "GetTextMetrics failed\n");
ok(tm1.tmHeight > 0, "expected a positive value, got %ld\n", tm1.tmHeight);
ok(tm1.tmAveCharWidth > 0, "expected a positive value, got %ld\n", tm1.tmHeight);
ok(tm1.tmAveCharWidth > 0, "expected a positive value, got %ld\n", tm1.tmAveCharWidth);
DeleteObject(SelectObject(hdc, hfont_old));
/* test the largest value */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment