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

This commit is contained in:
Francois Gouget 2007-11-20 13:47:10 +01:00 committed by Alexandre Julliard
parent e8edc51d34
commit 5f1416ef2b
1 changed files with 1 additions and 1 deletions

View File

@ -1010,7 +1010,7 @@ static void test_listbox_dlgdir(void)
/* Loaded path should have overwritten the label text */
SendMessage(g_label, WM_GETTEXT, (WPARAM)MAX_PATH, (LPARAM)pathBuffer);
trace("Static control after DlgDirList: %s\n", pathBuffer);
ok (strcmp("default contents", pathBuffer), "DlgDirList() did not modify static control!");
ok (strcmp("default contents", pathBuffer), "DlgDirList() did not modify static control!\n");
/* There should be some content in the listbox */
itemCount = SendMessage(g_listBox, LB_GETCOUNT, 0, 0);