kernel32/tests: Add a trailing linefeed to an ok() message.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2022-02-14 13:57:36 +01:00 committed by Alexandre Julliard
parent 64a7783386
commit 0016df0fb1
1 changed files with 1 additions and 1 deletions

View File

@ -3081,7 +3081,7 @@ static void test_blocking_rw(HANDLE writer, HANDLE reader, DWORD buf_size, BOOL
res = pCancelIoEx(reader, &read_overlapped2);
ok(res, "CancelIoEx failed with error %d\n", GetLastError());
res = pCancelIoEx(reader, &read_overlapped2);
ok(!res, "CancelIOEx succeeded unexpectedly");
ok(!res, "CancelIOEx succeeded unexpectedly\n");
ok(GetLastError() == ERROR_NOT_FOUND,
"In CancelIoEx failure, expected ERROR_NOT_FOUND, got %d\n", GetLastError());
test_overlapped_failure(reader, &read_overlapped2, ERROR_OPERATION_ABORTED);