Matteo Bruni : winhttp/tests: Fix typo in an ok() message.

Alexandre Julliard julliard at winehq.org
Wed Feb 9 16:03:50 CST 2022


Module: wine
Branch: master
Commit: f94d378236e61f8089b1ac31ca4b2ed3622c1f40
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=f94d378236e61f8089b1ac31ca4b2ed3622c1f40

Author: Matteo Bruni <mbruni at codeweavers.com>
Date:   Wed Feb  9 16:30:04 2022 +0100

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

Signed-off-by: Matteo Bruni <mbruni at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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) );
 




More information about the wine-cvs mailing list