Commit c0ab3694 authored by Alexander Morozov's avatar Alexander Morozov Committed by Alexandre Julliard

shell32/tests: Fix test failure on some NT4.

parent 1549088d
......@@ -83,7 +83,9 @@ static void test_namespace(void)
V_I4(&var) = ssfPROGRAMFILES;
r = IShellDispatch_NameSpace(sd, var, &folder);
todo_wine
ok(r == S_OK, "IShellDispatch::NameSpace failed: %08x\n", r);
ok(r == S_OK ||
broken(r == S_FALSE), /* NT4 */
"IShellDispatch::NameSpace failed: %08x\n", r);
if (r == S_OK)
{
r = Folder_get_Title(folder, &title);
......
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