shell32/test: Fix an ok() message.

Signed-off-by: Francois Gouget <fgouget@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2021-07-04 15:41:57 +02:00 committed by Alexandre Julliard
parent f593babf6d
commit d6d46299dd
1 changed files with 1 additions and 1 deletions

View File

@ -3010,7 +3010,7 @@ static void test_PathResolve(void)
ok(!lstrcmpiW(path, tests[i].expected_path),
"test %d: expected %s, got %s\n", i, wine_dbgstr_w(tests[i].expected_path), wine_dbgstr_w(path));
if (!tests[i].expected)
ok(GetLastError() == ERROR_FILE_NOT_FOUND, "expected ERROR_ALREADY_EXISTS, got %d\n", GetLastError());
ok(GetLastError() == ERROR_FILE_NOT_FOUND, "expected ERROR_FILE_NOT_FOUND, got %d\n", GetLastError());
}
CloseHandle(file);