Commit 871692e2 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

kernel32/tests: Fix a copy/paste error in an ok() message.

parent ee9bcbb9
......@@ -2163,7 +2163,7 @@ static void test_MoveFileW(void)
ret = MoveFileW(source, dest);
ok(!ret && GetLastError() == ERROR_ALREADY_EXISTS,
"CopyFileW: unexpected error %ld\n", GetLastError());
"MoveFileW: unexpected error %ld\n", GetLastError());
ret = DeleteFileW(source);
ok(ret, "DeleteFileW: error %ld\n", GetLastError());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment