Francois Gouget : ole32/tests: Add a trailing '\n' to ok() calls.
Module: wine Branch: master Commit: 315bf2fa452f03a471e70bc13ba6df489c4a7ed9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=315bf2fa452f03a471e70bc13b... Author: Francois Gouget <fgouget(a)free.fr> Date: Thu May 22 10:37:43 2008 +0200 ole32/tests: Add a trailing '\n' to ok() calls. --- dlls/ole32/tests/compobj.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dlls/ole32/tests/compobj.c b/dlls/ole32/tests/compobj.c index 191424d..24d790a 100644 --- a/dlls/ole32/tests/compobj.c +++ b/dlls/ole32/tests/compobj.c @@ -203,19 +203,19 @@ static void test_StringFromGUID2(void) int len; /* Test corner cases for buffer size */ len = StringFromGUID2(&CLSID_CDeviceMoniker,str,50); - ok(len == 39, "len: %d (expected 39)",len); + ok(len == 39, "len: %d (expected 39)\n", len); ok(!lstrcmpiW(str, wszCLSID_CDeviceMoniker),"string wan't equal for CLSID_CDeviceMoniker\n"); memset(str,0,sizeof str); len = StringFromGUID2(&CLSID_CDeviceMoniker,str,39); - ok(len == 39, "len: %d (expected 39)",len); + ok(len == 39, "len: %d (expected 39)\n", len); ok(!lstrcmpiW(str, wszCLSID_CDeviceMoniker),"string wan't equal for CLSID_CDeviceMoniker\n"); len = StringFromGUID2(&CLSID_CDeviceMoniker,str,38); - ok(len == 0, "len: %d (expected 0)",len); + ok(len == 0, "len: %d (expected 0)\n", len); len = StringFromGUID2(&CLSID_CDeviceMoniker,str,30); - ok(len == 0, "len: %d (expected 0)",len); + ok(len == 0, "len: %d (expected 0)\n", len); } static void test_CoCreateInstance(void)
participants (1)
-
Alexandre Julliard