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

This commit is contained in:
Michael Stefaniuc 2012-06-04 17:29:58 +02:00 committed by Alexandre Julliard
parent 824974cee4
commit a5b0d13741
1 changed files with 1 additions and 1 deletions

View File

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