shell32/tests: Don't outdent todo_wine*.
This prevents -Wmisleading-indentation warnings (Mingw GCC11). Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
231ecf8586
commit
0fc80c7db1
|
@ -1146,7 +1146,7 @@ static void test_ShellWindows(void)
|
|||
IDispatch_Release(app);
|
||||
|
||||
hr = IWebBrowser2_get_Document(wb, &doc);
|
||||
todo_wine
|
||||
todo_wine
|
||||
ok(hr == S_OK, "got 0x%08x\n", hr);
|
||||
if (hr == S_OK) {
|
||||
test_dispatch_typeinfo(doc, viewdual_riids);
|
||||
|
|
|
@ -4423,7 +4423,7 @@ static void test_contextmenu(IContextMenu *menu, BOOL background)
|
|||
|
||||
cmi.lpVerb = "foobar_wine_test";
|
||||
hr = IContextMenu_InvokeCommand(menu, &cmi);
|
||||
todo_wine_if(background)
|
||||
todo_wine_if(background)
|
||||
ok((hr == E_INVALIDARG) || (hr == E_FAIL /* Win7 */) ||
|
||||
(hr == HRESULT_FROM_WIN32(ERROR_NO_ASSOCIATION) /* Vista */),
|
||||
"Unexpected hr %#x.\n", hr);
|
||||
|
|
Loading…
Reference in New Issue