Francois Gouget : winhttp/tests: Add a trailing '\n' to an ok() call.

Alexandre Julliard julliard at winehq.org
Tue Sep 2 08:33:22 CDT 2008


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Sep  1 17:01:59 2008 +0200

winhttp/tests: Add a trailing '\n' to an ok() call.

---

 dlls/winhttp/tests/winhttp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/winhttp/tests/winhttp.c b/dlls/winhttp/tests/winhttp.c
index 1e50f36..3e963ac 100644
--- a/dlls/winhttp/tests/winhttp.c
+++ b/dlls/winhttp/tests/winhttp.c
@@ -250,7 +250,7 @@ static void test_WinHttpAddHeaders(void)
     len = sizeof(buffer);
     ret = WinHttpQueryHeaders(request, WINHTTP_QUERY_CUSTOM | WINHTTP_QUERY_FLAG_REQUEST_HEADERS,
         test_header_name, buffer, &len, &index);
-    ok(ret == FALSE, "WinHttpQueryHeaders unexpectedly succeeded, found 'Warning' header.");
+    ok(ret == FALSE, "WinHttpQueryHeaders unexpectedly succeeded, found 'Warning' header.\n");
     ret = WinHttpAddRequestHeaders(request, test_headers[0], -1L, WINHTTP_ADDREQ_FLAG_ADD);
     ok(ret == TRUE, "WinHttpAddRequestHeader failed to add new header, got %d with error %u.\n", ret, GetLastError());
 




More information about the wine-cvs mailing list