winhttp/tests: Fix a typo in ok() message.
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
117f862ce5
commit
a66f08db46
|
@ -617,7 +617,7 @@ static void test_WinHttpAddHeaders(void)
|
||||||
test_header_name, NULL, &len, &index);
|
test_header_name, NULL, &len, &index);
|
||||||
ok(ret == FALSE, "WinHttpQueryHeaders unexpectedly succeeded.\n");
|
ok(ret == FALSE, "WinHttpQueryHeaders unexpectedly succeeded.\n");
|
||||||
ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER,
|
ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER,
|
||||||
"WinHttpQueryHeaders set incorrect error: expected ERROR_INSUFFICENT_BUFFER, go %u\n", GetLastError());
|
"WinHttpQueryHeaders set incorrect error: expected ERROR_INSUFFICENT_BUFFER, got %u\n", GetLastError());
|
||||||
ok(len > 40, "WinHttpQueryHeaders returned invalid length: expected greater than 40, got %d\n", len);
|
ok(len > 40, "WinHttpQueryHeaders returned invalid length: expected greater than 40, got %d\n", len);
|
||||||
ok(index == 0, "WinHttpQueryHeaders incorrectly incremented header index.\n");
|
ok(index == 0, "WinHttpQueryHeaders incorrectly incremented header index.\n");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue