[PATCH] winhttp/tests: Fix the spelling of ok() and skip() messages and a comment.

Francois Gouget fgouget at free.fr
Mon Dec 9 02:46:50 CST 2019


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/winhttp/tests/winhttp.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/winhttp/tests/winhttp.c b/dlls/winhttp/tests/winhttp.c
index 6a8d4962386..e4c614cb104 100644
--- a/dlls/winhttp/tests/winhttp.c
+++ b/dlls/winhttp/tests/winhttp.c
@@ -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());
-- 
2.20.1




More information about the wine-devel mailing list