Commit 6922075e authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

user32/tests: Add the trailing '\n' to ok() calls.

parent f83cd9d0
......@@ -562,7 +562,7 @@ static void test_listbox_LB_DIR()
HANDLE file;
file = CreateFileA( "wtest1.tmp.c", FILE_ALL_ACCESS, 0, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL );
ok(file != INVALID_HANDLE_VALUE, "Error creating the test file: %d", GetLastError());
ok(file != INVALID_HANDLE_VALUE, "Error creating the test file: %d\n", GetLastError());
CloseHandle( file );
/* NOTE: for this test to succeed, there must be no subdirectories
......@@ -1055,7 +1055,7 @@ static void test_listbox_dlgdir(void)
HANDLE file;
file = CreateFileA( "wtest1.tmp.c", FILE_ALL_ACCESS, 0, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL );
ok(file != INVALID_HANDLE_VALUE, "Error creating the test file: %d", GetLastError());
ok(file != INVALID_HANDLE_VALUE, "Error creating the test file: %d\n", GetLastError());
CloseHandle( file );
/* NOTE: for this test to succeed, there must be no subdirectories
......
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