Module: wine Branch: master Commit: 5f1416ef2bdf70fd84700a56c3ea3faf94b03fed URL: http://source.winehq.org/git/wine.git/?a=commit;h=5f1416ef2bdf70fd84700a56c3...
Author: Francois Gouget fgouget@free.fr Date: Tue Nov 20 13:47:10 2007 +0100
user32/tests: Add the trailing '\n' to an ok() call.
---
dlls/user32/tests/listbox.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/user32/tests/listbox.c b/dlls/user32/tests/listbox.c index 90f3e2c..529e2c0 100644 --- a/dlls/user32/tests/listbox.c +++ b/dlls/user32/tests/listbox.c @@ -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);