Commit 23d6ac27 authored by Giovanni Mascellani's avatar Giovanni Mascellani Committed by Alexandre Julliard

dwrite/tests: Remove overzealous test.

While this test happens to always be true on Windows, this is just a property of the fallback fonts installed on the system, not a property of the code. Since we cannot control the fonts installed on users' computers, it makes no sense to do this test. Signed-off-by: 's avatarGiovanni Mascellani <gmascellani@codeweavers.com> Signed-off-by: 's avatarNikolay Sivov <nsivov@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent e2659819
......@@ -4699,12 +4699,6 @@ todo_wine {
todo_wine
ok(font != NULL, "got %p\n", font);
if (font) {
/* font returned for Hiragana character, check if it supports Latin too */
exists = FALSE;
hr = IDWriteFont_HasCharacter(font, 'b', &exists);
ok(hr == S_OK, "got 0x%08x\n", hr);
ok(exists, "got %d\n", exists);
IDWriteFont_Release(font);
}
/* Try with explicit collection, Tahoma will be forced. */
......
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