shell32/tests: Fix test failure on some NT4.

This commit is contained in:
Alexander Morozov 2011-01-27 14:44:02 +03:00 committed by Alexandre Julliard
parent 1549088da0
commit c0ab36949d
1 changed files with 3 additions and 1 deletions

View File

@ -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);