Commit bbf0602c authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

mshtml/tests: Fix the spelling of an ok() message.

parent fd23136e
......@@ -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);
......
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