comctl32/tests: Add a trailing '\n' to ok() calls.
This commit is contained in:
parent
31e38f8d34
commit
544f882918
|
@ -1014,14 +1014,14 @@ static void test_shell_imagelist(void)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
IImageList_GetImageCount(iml, &out);
|
IImageList_GetImageCount(iml, &out);
|
||||||
todo_wine ok(out > 0, "IImageList_GetImageCount returned out <= 0");
|
todo_wine ok(out > 0, "IImageList_GetImageCount returned out <= 0\n");
|
||||||
|
|
||||||
/* right and bottom should be 32x32 for large icons, or 48x48 if larger
|
/* right and bottom should be 32x32 for large icons, or 48x48 if larger
|
||||||
icons enabled in control panel */
|
icons enabled in control panel */
|
||||||
IImageList_GetImageRect(iml, 0, &rect);
|
IImageList_GetImageRect(iml, 0, &rect);
|
||||||
todo_wine ok((((rect.right == 32) && (rect.bottom == 32)) ||
|
todo_wine ok((((rect.right == 32) && (rect.bottom == 32)) ||
|
||||||
((rect.right == 48) && (rect.bottom == 48))),
|
((rect.right == 48) && (rect.bottom == 48))),
|
||||||
"IImageList_GetImageRect returned r:%d,b:%d",
|
"IImageList_GetImageRect returned r:%d,b:%d\n",
|
||||||
rect.right, rect.bottom);
|
rect.right, rect.bottom);
|
||||||
|
|
||||||
IImageList_Release(iml);
|
IImageList_Release(iml);
|
||||||
|
|
Loading…
Reference in New Issue