wshom.ocx/tests: Use proper method macro.

oldstable
Nikolay Sivov 2012-08-24 13:23:43 +04:00 committed by Alexandre Julliard
parent 96005d17d5
commit f91f6034de
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ static void test_wshshell(void)
hr = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
EXPECT_HR(hr, E_NOINTERFACE);
hr = IDispatch_QueryInterface(shell, &IID_IWshShell3, (void**)&sh3);
hr = IUnknown_QueryInterface(shell, &IID_IWshShell3, (void**)&sh3);
EXPECT_HR(hr, S_OK);
hr = IWshShell3_get_SpecialFolders(sh3, &coll);