kernel32/tests: Add a missing linebreak to an ok() message.

Signed-off-by: Sebastian Lackner <sebastian@fds-team.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Sebastian Lackner 2016-08-26 01:56:58 +02:00 committed by Alexandre Julliard
parent 7027e9b268
commit 355af77a21
1 changed files with 1 additions and 1 deletions

View File

@ -1248,7 +1248,7 @@ static void test_RegisterWaitForSingleObject(void)
SetLastError(0xdeadbeef);
ret = pUnregisterWait(NULL);
ok(!ret, "Expected UnregisterWait to fail");
ok(!ret, "Expected UnregisterWait to fail\n");
ok(GetLastError() == ERROR_INVALID_HANDLE,
"Expected ERROR_INVALID_HANDLE, got %d\n", GetLastError());
}