advapi32/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:
Eric Pouech 2022-02-21 08:07:45 +01:00 committed by Alexandre Julliard
parent 3a843a43b4
commit ec49488778

View file

@ -5522,9 +5522,9 @@ static void test_mutex_security(HANDLE token)
SetLastError(0xdeadbeef);
dup = OpenMutexA(0, FALSE, "WineTestMutex");
todo_wine
todo_wine
ok(!dup, "OpenMutex should fail\n");
todo_wine
todo_wine
ok(GetLastError() == ERROR_ACCESS_DENIED, "wrong error %u\n", GetLastError());
}
@ -5579,9 +5579,9 @@ static void test_event_security(HANDLE token)
SetLastError(0xdeadbeef);
dup = OpenEventA(0, FALSE, "WineTestEvent");
todo_wine
todo_wine
ok(!dup, "OpenEvent should fail\n");
todo_wine
todo_wine
ok(GetLastError() == ERROR_ACCESS_DENIED, "wrong error %u\n", GetLastError());
}