Module: wine Branch: master Commit: 83654685f6cdd60df80eb7d1c3033141113665e1 URL: https://source.winehq.org/git/wine.git/?a=commit;h=83654685f6cdd60df80eb7d1c...
Author: Andrey Gusev andrey.goosev@gmail.com Date: Fri Nov 29 11:38:59 2019 +0200
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
---
dlls/mshtml/tests/dom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/mshtml/tests/dom.c b/dlls/mshtml/tests/dom.c index ff7c62bdfc..3234e66cd5 100644 --- a/dlls/mshtml/tests/dom.c +++ b/dlls/mshtml/tests/dom.c @@ -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);