Mathew Hodson : riched20/tests: Fix function names in two ok() messages.
Module: wine Branch: master Commit: 3808b61967b93f703d5493a479144a8957ac366d URL: https://source.winehq.org/git/wine.git/?a=commit;h=3808b61967b93f703d5493a47... Author: Mathew Hodson <mathew.hodson(a)gmail.com> Date: Sun Dec 1 18:15:18 2019 -0500 riched20/tests: Fix function names in two ok() messages. Signed-off-by: Mathew Hodson <mathew.hodson(a)gmail.com> Signed-off-by: Huw Davies <huw(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/riched20/tests/txtsrv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/riched20/tests/txtsrv.c b/dlls/riched20/tests/txtsrv.c index dd290e3fb2..487b9a02f0 100644 --- a/dlls/riched20/tests/txtsrv.c +++ b/dlls/riched20/tests/txtsrv.c @@ -992,10 +992,10 @@ static void test_TxGetScroll(void) return; ret = ITextServices_TxGetHScroll(txtserv, NULL, NULL, NULL, NULL, NULL); - ok(ret == S_OK, "ITextSerHices_GetVScroll failed: 0x%08x.\n", ret); + ok(ret == S_OK, "ITextServices_TxGetHScroll failed: 0x%08x.\n", ret); ret = ITextServices_TxGetVScroll(txtserv, NULL, NULL, NULL, NULL, NULL); - ok(ret == S_OK, "ITextServices_GetVScroll failed: 0x%08x.\n", ret); + ok(ret == S_OK, "ITextServices_TxGetVScroll failed: 0x%08x.\n", ret); ITextServices_Release(txtserv); ITextHost_Release(host);
participants (1)
-
Alexandre Julliard