Commit fab6c2d6 authored by Sven Baars's avatar Sven Baars Committed by Alexandre Julliard

taskschd/tests: Fix test failures on newer version of Windows 10.

parent 895f8006
......@@ -783,7 +783,10 @@ static void test_GetTask(void)
/* Delete the folder and recreate it to prevent a crash on w1064v1507 */
hr = ITaskFolder_DeleteFolder(root, Wine, 0);
ok(hr == S_OK, "DeleteTask error %#lx\n", hr);
todo_wine
ok(hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND) || broken(hr == S_OK) /* w1064v1507 */,
"expected ERROR_FILE_NOT_FOUND, got %#lx\n", hr);
ITaskFolder_Release(folder);
hr = ITaskFolder_CreateFolder(root, Wine, v_null, &folder);
ok(hr == S_OK, "CreateFolder error %#lx\n", 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