Commit 92890ac9 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

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

Signed-off-by: 's avatarAndrey Gusev <andrey.goosev@gmail.com> Signed-off-by: Jacek Caban<jacek@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 2e11e6e1
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment