Module: wine Branch: master Commit: 7839d134e9955b35b8e640a346f7cf408d49cf26 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7839d134e9955b35b8e640a346...
Author: Qian Hong fracting@gmail.com Date: Thu Aug 16 19:01:03 2012 +0800
riched20/tests: Fixed typo in test_EM_STREAMIN.
---
dlls/riched20/tests/editor.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/riched20/tests/editor.c b/dlls/riched20/tests/editor.c index 6a20b19..27f4fee 100644 --- a/dlls/riched20/tests/editor.c +++ b/dlls/riched20/tests/editor.c @@ -5146,7 +5146,7 @@ static void test_EM_STREAMIN(void)
result = SendMessage(hwndRichEdit, WM_GETTEXT, 1024, (LPARAM) buffer); ok (result == length5, - "EM_STREAMIN: Test 4 returned %ld, expected %d\n", result, length5); + "EM_STREAMIN: Test 5 returned %ld, expected %d\n", result, length5); ok(es.dwError == 0, "EM_STREAMIN: Test 5 set error %d, expected %d\n", es.dwError, 0);
DestroyWindow(hwndRichEdit);