gdi32/tests: Add the trailing '\n' to a couple of ok() calls.
This commit is contained in:
parent
2e0d35aa2f
commit
e637e83ec4
|
@ -1767,7 +1767,7 @@ static void test_GdiRealizationInfo(void)
|
||||||
r = pGdiRealizationInfo(hdc, info);
|
r = pGdiRealizationInfo(hdc, info);
|
||||||
ok(r != 0, "ret 0\n");
|
ok(r != 0, "ret 0\n");
|
||||||
ok(info[0] == 1, "info[0] = %x for the system font\n", info[0]);
|
ok(info[0] == 1, "info[0] = %x for the system font\n", info[0]);
|
||||||
ok(info[3] == 0xcccccccc, "structure longer than 3 dwords");
|
ok(info[3] == 0xcccccccc, "structure longer than 3 dwords\n");
|
||||||
|
|
||||||
if (!is_truetype_font_installed("Arial"))
|
if (!is_truetype_font_installed("Arial"))
|
||||||
{
|
{
|
||||||
|
@ -1786,7 +1786,7 @@ static void test_GdiRealizationInfo(void)
|
||||||
r = pGdiRealizationInfo(hdc, info);
|
r = pGdiRealizationInfo(hdc, info);
|
||||||
ok(r != 0, "ret 0\n");
|
ok(r != 0, "ret 0\n");
|
||||||
ok(info[0] == 3, "info[0] = %x for arial\n", info[0]);
|
ok(info[0] == 3, "info[0] = %x for arial\n", info[0]);
|
||||||
ok(info[3] == 0xcccccccc, "structure longer than 3 dwords");
|
ok(info[3] == 0xcccccccc, "structure longer than 3 dwords\n");
|
||||||
|
|
||||||
DeleteObject(SelectObject(hdc, hfont_old));
|
DeleteObject(SelectObject(hdc, hfont_old));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue