comctl32/tests: Add a trailing '\n' to an ok() call.

This commit is contained in:
Francois Gouget 2009-01-21 20:01:10 +01:00 committed by Alexandre Julliard
parent e6676ff50e
commit 02ace3613c
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ static void TestCallback(void)
tvi.pszText = buf;
tvi.cchTextMax = sizeof(buf)/sizeof(buf[0]);
ret = TreeView_GetItem(hTree, &tvi);
ok(ret == 1, "ret");
ok(ret == 1, "ret\n");
ok(strcmp(tvi.pszText, TEST_CALLBACK_TEXT) == 0, "Callback item text mismatch %s vs %s\n",
tvi.pszText, TEST_CALLBACK_TEXT);