user/tests: Added \n to a few ok() calls.

This commit is contained in:
Detlef Riekenberg 2006-01-20 16:16:43 +01:00 committed by Alexandre Julliard
parent 1b7d346d1f
commit 191d62e7f9
1 changed files with 2 additions and 2 deletions

View File

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