Commit 191d62e7 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

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

parent 1b7d346d
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment