user/tests: Added \n to a few ok() calls.
This commit is contained in:
parent
1b7d346d1f
commit
191d62e7f9
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue