[PATCH 1/7] winhttp/tests: Fix typo in an ok() message.

Matteo Bruni mbruni at codeweavers.com
Wed Feb 9 09:30:04 CST 2022


Signed-off-by: Matteo Bruni <mbruni at codeweavers.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 354c85c6d28..35f6bc5cf26 100644
--- a/dlls/winhttp/tests/winhttp.c
+++ b/dlls/winhttp/tests/winhttp.c
@@ -5116,7 +5116,7 @@ static void test_chunked_read(void)
     header[0] = 0;
     len = sizeof(header);
     ret = WinHttpQueryHeaders( req, WINHTTP_QUERY_TRANSFER_ENCODING, NULL, header, &len, 0 );
-    ok( ret, "failed to get TRANSFER_ENCODING header (error %lu\n", GetLastError() );
+    ok( ret, "failed to get TRANSFER_ENCODING header with error %lu\n", GetLastError() );
     ok( !lstrcmpW( header, L"chunked" ), "wrong transfer encoding %s\n", wine_dbgstr_w(header) );
     trace( "transfer encoding: %s\n", wine_dbgstr_w(header) );
 
-- 
2.34.1




More information about the wine-devel mailing list