Module: wine Branch: refs/heads/master Commit: 191d62e7f9f5fc96dbf1260fc6fb19a3fcc5e0c2 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=191d62e7f9f5fc96dbf1260f...
Author: Detlef Riekenberg wine.dev@web.de Date: Fri Jan 20 16:16:43 2006 +0100
user/tests: Added \n to a few ok() calls.
---
dlls/user/tests/resource.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/user/tests/resource.c b/dlls/user/tests/resource.c index c910253..13988d9 100644 --- a/dlls/user/tests/resource.c +++ b/dlls/user/tests/resource.c @@ -287,11 +287,11 @@ static void test_LoadImage(void) { HBITMAP bmp;
bmp = LoadBitmapA(NULL, MAKEINTRESOURCE(OBM_CHECK)); - ok(bmp != NULL, "Could not load the OBM_CHECK bitmap"); + ok(bmp != NULL, "Could not load the OBM_CHECK bitmap\n"); if (bmp) DeleteObject(bmp);
bmp = LoadBitmapA(NULL, "#32760"); /* Value of OBM_CHECK */ - ok(bmp != NULL, "Could not load the OBM_CHECK bitmap"); + ok(bmp != NULL, "Could not load the OBM_CHECK bitmap\n"); if (bmp) DeleteObject(bmp); }