[PATCH] riched20/tests: Fix function names in two ok() messages.

Mathew Hodson mathew.hodson at gmail.com
Sun Dec 1 17:15:18 CST 2019


Signed-off-by: Mathew Hodson <mathew.hodson at gmail.com>
---
 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 dd290e3..487b9a0 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);
-- 
2.7.4




More information about the wine-devel mailing list