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

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 2019-11-29 11:38:59 +02:00 committed by Alexandre Julliard
parent 923e62eb55
commit 83654685f6
1 changed files with 1 additions and 1 deletions

View File

@ -2058,7 +2058,7 @@ static IHTMLDOMAttribute *_create_attr(unsigned line, IUnknown *unk, const char
HRESULT hres;
hres = IHTMLDocument5_createAttribute(doc, str, &attr);
ok_(__FILE__,line)(hres == S_OK, "createAttribute dailed: %08x\n", hres);
ok_(__FILE__,line)(hres == S_OK, "createAttribute failed: %08x\n", hres);
SysFreeString(str);
IHTMLDocument5_Release(doc);