inetcomm/tests: A spelling fix in an ok() message.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2017-02-08 12:09:51 +01:00 committed by Alexandre Julliard
parent b436a15a87
commit 6b2dbe6cf6
1 changed files with 1 additions and 1 deletions

View File

@ -1579,7 +1579,7 @@ static void test_mhtml_protocol(void)
hres = IClassFactory_CreateInstance(class_factory, &outer, &IID_IUnknown, (void**)&unk);
ok(hres == S_OK, "CreateInstance returned: %08x\n", hres);
hres = IUnknown_QueryInterface(unk, &IID_IInternetProtocol, (void**)&unk2);
ok(hres == S_OK, "Coult not get IInternetProtocol iface: %08x\n", hres);
ok(hres == S_OK, "Could not get IInternetProtocol iface: %08x\n", hres);
IUnknown_Release(unk2);
IUnknown_Release(unk);