[PATCH] riched20/tests: Fix a function name in an ok() message.
Signed-off-by: Francois Gouget <fgouget(a)free.fr> --- dlls/riched20/tests/txtsrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/riched20/tests/txtsrv.c b/dlls/riched20/tests/txtsrv.c index dd290e3fb2f..eea01b7833b 100644 --- a/dlls/riched20/tests/txtsrv.c +++ b/dlls/riched20/tests/txtsrv.c @@ -992,7 +992,7 @@ 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_GetVScroll 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); -- 2.20.1
On Thu, Nov 28, 2019 at 3:29 PM Francois Gouget <fgouget(a)free.fr> wrote:
Signed-off-by: Francois Gouget <fgouget(a)free.fr> --- dlls/riched20/tests/txtsrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/riched20/tests/txtsrv.c b/dlls/riched20/tests/txtsrv.c index dd290e3fb2f..eea01b7833b 100644 --- a/dlls/riched20/tests/txtsrv.c +++ b/dlls/riched20/tests/txtsrv.c @@ -992,7 +992,7 @@ 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_GetVScroll failed: 0x%08x.\n", ret);
It should say GetHScroll().
ret = ITextServices_TxGetVScroll(txtserv, NULL, NULL, NULL, NULL, NULL); ok(ret == S_OK, "ITextServices_GetVScroll failed: 0x%08x.\n", ret); -- 2.20.1
Hi, While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=61052 Your paranoid android. === build (build log) === error: corrupt patch at line 44 Task: Patch failed to apply === debian10 (build log) === Task: Patch failed to apply === debian10 (build log) === Task: Patch failed to apply
participants (3)
-
Francois Gouget -
Marvin -
Nikolay Sivov