winhttp/tests: Fix the spelling of ok() and skip() messages and a comment.
Signed-off-by: Francois Gouget <fgouget@free.fr> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7eb54616ff
commit
c1273cff0c
|
@ -412,7 +412,7 @@ static void test_WinHttpSendRequest (void)
|
|||
ok(ret, "WinHttpSetOption failed: %u\n", GetLastError());
|
||||
|
||||
/* writing more data than promised by the content-length header causes an error when the connection
|
||||
is resued, so disable keep-alive */
|
||||
is reused, so disable keep-alive */
|
||||
disable = WINHTTP_DISABLE_KEEP_ALIVE;
|
||||
ret = WinHttpSetOption(request, WINHTTP_OPTION_DISABLE_FEATURE, &disable, sizeof(disable));
|
||||
ok(ret, "WinHttpSetOption failed: %u\n", GetLastError());
|
||||
|
@ -692,7 +692,7 @@ static void test_WinHttpAddHeaders(void)
|
|||
test_header_name, NULL, &len, &index);
|
||||
ok(ret == FALSE, "WinHttpQueryHeaders unexpectedly succeeded.\n");
|
||||
ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER,
|
||||
"WinHttpQueryHeaders set incorrect error: expected ERROR_INSUFFICENT_BUFFER, got %u\n", GetLastError());
|
||||
"WinHttpQueryHeaders set incorrect error: expected ERROR_INSUFFICIENT_BUFFER, got %u\n", GetLastError());
|
||||
ok(len > 40, "WinHttpQueryHeaders returned invalid length: expected greater than 40, got %d\n", len);
|
||||
ok(index == 0, "WinHttpQueryHeaders incorrectly incremented header index.\n");
|
||||
|
||||
|
@ -2144,7 +2144,7 @@ static void test_resolve_timeout(void)
|
|||
WinHttpCloseHandle(ses);
|
||||
}
|
||||
else
|
||||
skip("Skipping host resolution tests, host resolution preformed by proxy\n");
|
||||
skip("Skipping host resolution tests, host resolution performed by proxy\n");
|
||||
|
||||
ses = WinHttpOpen(test_useragent, 0, NULL, NULL, 0);
|
||||
ok(ses != NULL, "failed to open session %u\n", GetLastError());
|
||||
|
|
Loading…
Reference in New Issue