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

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Jacek Caban<jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Andrey Gusev 2016-05-22 12:43:16 +03:00 committed by Alexandre Julliard
parent 2e11e6e1f8
commit 92890ac993
1 changed files with 2 additions and 2 deletions

View File

@ -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);