winhttp/tests: Fix a typo in ok() message.

Andrey Gusev andrey.goosev at gmail.com
Wed Jun 22 13:31:28 CDT 2016


-------------- next part --------------
From 37a80f0f9df57e4b78b2d9cdbbea1316f56f0dcf Mon Sep 17 00:00:00 2001
From: Andrey Gusev <andrey.goosev at gmail.com>
Date: Wed, 22 Jun 2016 21:30:07 +0300
Subject: [PATCH] winhttp/tests: Fix a typo in ok() message.

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/winhttp/tests/winhttp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/winhttp/tests/winhttp.c b/dlls/winhttp/tests/winhttp.c
index f81c07c..6be7598 100644
--- a/dlls/winhttp/tests/winhttp.c
+++ b/dlls/winhttp/tests/winhttp.c
@@ -617,7 +617,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, 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(index == 0, "WinHttpQueryHeaders incorrectly incremented header index.\n");
 
-- 
2.5.5



More information about the wine-patches mailing list