mshtml/tests: Fix the spelling of an ok() message.
Signed-off-by: Francois Gouget <fgouget@free.fr> Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
fd23136ef9
commit
bbf0602cb4
|
@ -640,7 +640,7 @@ static void do_test_about_protocol(IClassFactory *factory, DWORD bf)
|
|||
hres = IInternetProtocol_Read(protocol, buf, sizeof(buf), &cb);
|
||||
ok(hres == S_OK, "Read failed: %08x\n", hres);
|
||||
ok(cb == sizeof(blank_html), "cb=%d\n", cb);
|
||||
ok(!memcmp(buf, blank_html, cb), "Readed wrong data\n");
|
||||
ok(!memcmp(buf, blank_html, cb), "Read wrong data\n");
|
||||
hres = IInternetProtocol_UnlockRequest(protocol);
|
||||
ok(hres == S_OK, "UnlockRequest failed: %08x\n", hres);
|
||||
|
||||
|
@ -650,7 +650,7 @@ static void do_test_about_protocol(IClassFactory *factory, DWORD bf)
|
|||
hres = IInternetProtocol_Read(protocol, buf, sizeof(buf), &cb);
|
||||
ok(hres == S_OK, "Read failed: %08x\n", hres);
|
||||
ok(cb == sizeof(test_html), "cb=%d\n", cb);
|
||||
ok(!memcmp(buf, test_html, cb), "Readed wrong data\n");
|
||||
ok(!memcmp(buf, test_html, cb), "Read wrong data\n");
|
||||
hres = IInternetProtocol_UnlockRequest(protocol);
|
||||
ok(hres == S_OK, "UnlockRequest failed: %08x\n", hres);
|
||||
|
||||
|
@ -660,7 +660,7 @@ static void do_test_about_protocol(IClassFactory *factory, DWORD bf)
|
|||
hres = IInternetProtocol_Read(protocol, buf, sizeof(buf), &cb);
|
||||
ok(hres == S_OK, "Read failed: %08x\n", hres);
|
||||
ok(cb == sizeof(blank_html), "cb=%d\n", cb);
|
||||
ok(!memcmp(buf, blank_html, cb), "Readed wrong data\n");
|
||||
ok(!memcmp(buf, blank_html, cb), "Read wrong data\n");
|
||||
hres = IInternetProtocol_UnlockRequest(protocol);
|
||||
ok(hres == S_OK, "UnlockRequest failed: %08x\n", hres);
|
||||
|
||||
|
|
|
@ -2719,7 +2719,7 @@ static void test_body_style(IHTMLStyle *style)
|
|||
|
||||
hres = IHTMLStyle_get_borderTopColor(style, &v);
|
||||
ok(hres == S_OK, "get_borderTopColor: %08x\n", hres);
|
||||
ok(!strcmp_wa(V_BSTR(&v), "red"), "expecte red = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
||||
ok(!strcmp_wa(V_BSTR(&v), "red"), "expected red = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
||||
VariantClear(&v);
|
||||
|
||||
hres = IHTMLStyle_put_borderTopColor(style, vDefault);
|
||||
|
|
Loading…
Reference in New Issue