Commit f94d3782 authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

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

parent 1ffde8b1
......@@ -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) );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment