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: Giovanni Mascellani <gmascellani@codeweavers.com> Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e2659819b8
commit
23d6ac27db
|
@ -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. */
|
||||
|
|
Loading…
Reference in New Issue