psapi/tests: Remove todo_wine from succeeding tests.

These were missed in 19a79f4228.

Signed-off-by: Sebastian Lackner <sebastian@fds-team.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Sebastian Lackner 2017-05-10 17:38:51 +02:00 committed by Alexandre Julliard
parent e8e23114a2
commit e39d1614a9
1 changed files with 0 additions and 2 deletions

View File

@ -303,9 +303,7 @@ static void test_GetProcessMemoryInfo(void)
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
ret = pGetProcessMemoryInfo(hpSR, &pmc, sizeof(pmc)); ret = pGetProcessMemoryInfo(hpSR, &pmc, sizeof(pmc));
todo_wine
ok(!ret, "GetProcessMemoryInfo should fail\n"); ok(!ret, "GetProcessMemoryInfo should fail\n");
todo_wine
ok(GetLastError() == ERROR_ACCESS_DENIED, "expected error=ERROR_ACCESS_DENIED but got %d\n", GetLastError()); ok(GetLastError() == ERROR_ACCESS_DENIED, "expected error=ERROR_ACCESS_DENIED but got %d\n", GetLastError());
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);