Commit cc2cd5a5 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 4c89a83a
......@@ -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);
......
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