From 731980562180d14cf0964e2c4e8f40c832fc2ca2 Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Thu, 18 Jun 2009 10:32:41 +0200 Subject: [PATCH] shell32/tests: Fix a test failure on Vista. --- dlls/shell32/tests/shlfolder.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/shell32/tests/shlfolder.c b/dlls/shell32/tests/shlfolder.c index 58bac8f4b87..c25c4a93a4e 100644 --- a/dlls/shell32/tests/shlfolder.c +++ b/dlls/shell32/tests/shlfolder.c @@ -479,6 +479,7 @@ static void test_GetDisplayName(void) hr = IShellFolder_BindToObject(psfDesktop, pidlTestFile, NULL, &IID_IUnknown, (VOID**)&psfFile); todo_wine ok (hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND) || + hr == E_NOTIMPL || /* Vista */ broken(SUCCEEDED(hr)), /* Win9x, W2K */ "hr = %08x\n", hr); if (SUCCEEDED(hr)) {