Commit d8d70020 authored by Alexandre Julliard's avatar Alexandre Julliard

mlang/tests: Fix a test failure on Win2k.

parent 7aaec2e6
......@@ -1946,7 +1946,8 @@ static void test_IsCodePageInstallable(IMultiLanguage2 *ml2)
* up an installation dialog on some platforms, even when specifying CPIOD_PEEK.
*/
if (IsValidCodePage(i))
ok(hr == S_OK, "code page %u is valid but not installable 0x%08x\n", i, hr);
ok(hr == S_OK || broken(hr == E_INVALIDARG), /* win2k */
"code page %u is valid but not installable 0x%08x\n", i, hr);
}
}
......
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