Andrey Gusev : mshtml/tests: Fix a typo in ok() messages.

Alexandre Julliard julliard at wine.codeweavers.com
Mon May 23 10:27:45 CDT 2016


Module: wine
Branch: master
Commit: 92890ac993475d14ca734a1e916ce11745e10826
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=92890ac993475d14ca734a1e916ce11745e10826

Author: Andrey Gusev <andrey.goosev at gmail.com>
Date:   Sun May 22 12:43:16 2016 +0300

mshtml/tests: Fix a typo in ok() messages.

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
Signed-off-by: Jacek Caban<jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mshtml/tests/activex.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/mshtml/tests/activex.c b/dlls/mshtml/tests/activex.c
index 783b976..bd1a0cd 100644
--- a/dlls/mshtml/tests/activex.c
+++ b/dlls/mshtml/tests/activex.c
@@ -1569,7 +1569,7 @@ static void test_iface_wrapping(IHTMLObjectElement *elem)
     SET_EXPECT(wrapped_Release);
     unk = (void*)0xdeadbeef;
     hres = IHTMLObjectElement_QueryInterface(elem, &IID_ITestActiveX, (void**)&unk);
-    ok(hres == S_OK, "QueryInerface(IID_ITestActiveX failed: %08x\n", hres);
+    ok(hres == S_OK, "QueryInterface(IID_ITestActiveX failed: %08x\n", hres);
     CHECK_CALLED(QI_ITestActiveX);
     CHECK_CALLED(wrapped_AddRef);
     CHECK_CALLED(wrapped_Release);
@@ -1605,7 +1605,7 @@ static void test_iface_wrapping(IHTMLObjectElement *elem)
     SET_EXPECT(wrapped_Release);
     unk = (void*)0xdeadbeef;
     hres = IHTMLObjectElement_QueryInterface(elem, &IID_ITestActiveX, (void**)&unk2);
-    ok(hres == S_OK, "QueryInerface(IID_ITestActiveX failed: %08x\n", hres);
+    ok(hres == S_OK, "QueryInterface(IID_ITestActiveX failed: %08x\n", hres);
     CHECK_CALLED(QI_ITestActiveX);
     CHECK_CALLED(wrapped_AddRef);
     CHECK_CALLED(wrapped_Release);




More information about the wine-cvs mailing list