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

Andrey Gusev andrey.goosev at gmail.com
Sun May 22 04:44:47 CDT 2016


-------------- next part --------------
From 6f9b8bf9358a597f45b24109e5ba37ba8f5ead82 Mon Sep 17 00:00:00 2001
Message-Id: <6f9b8bf9358a597f45b24109e5ba37ba8f5ead82.1463910214.git.andrey.goosev at gmail.com>
From: Andrey Gusev <andrey.goosev at gmail.com>
Date: Sun, 22 May 2016 12:43:16 +0300
Subject: [PATCH] mshtml/tests: Fix a typo in ok() messages

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 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);
-- 
2.5.5



More information about the wine-patches mailing list