Michael Stefaniuc : shlwapi/tests: Fix the expected value in an ok() message.

Alexandre Julliard julliard at winehq.org
Mon Jun 4 13:27:14 CDT 2012


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

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Mon Jun  4 17:29:58 2012 +0200

shlwapi/tests: Fix the expected value in an ok() message.

---

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

diff --git a/dlls/shlwapi/tests/url.c b/dlls/shlwapi/tests/url.c
index 949aaa0..fbc3601 100644
--- a/dlls/shlwapi/tests/url.c
+++ b/dlls/shlwapi/tests/url.c
@@ -901,7 +901,7 @@ static void test_UrlEscape(void)
         wc = 127;
         ret = pUrlEscapeW(overwrite, &wc, &size, URL_ESCAPE_SPACES_ONLY);
         ok(ret == E_POINTER, "got %x, expected %x\n", ret, E_POINTER);
-        ok(size == 10, "got %d, expected 9\n", size);
+        ok(size == 10, "got %d, expected 10\n", size);
         ok(wc == 127, "String has changed, wc = %d\n", wc);
     }
 




More information about the wine-cvs mailing list