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

This commit is contained in:
Francois Gouget 2011-03-05 11:50:48 +01:00 committed by Alexandre Julliard
parent 4c89a83a5a
commit cc2cd5a525
1 changed files with 1 additions and 1 deletions

View File

@ -6028,7 +6028,7 @@ static void test_EM_CHARFROMPOS(void)
hwnd = new_richedit(NULL);
result = SendMessageA(hwnd, WM_SETTEXT, 0,
(LPARAM)"one two three four five six seven\reight");
ok(result == 1, "Expected 1, got %d", result);
ok(result == 1, "Expected 1, got %d\n", result);
GetClientRect(hwnd, &rcClient);
result = SendMessage(hwnd, EM_CHARFROMPOS, 0, (LPARAM)&point);