1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-03 08:19:41 +00:00

user32/tests: Add a trailing linefeed to ok() and skip() calls.

This commit is contained in:
Francois Gouget 2023-11-22 14:04:34 +01:00 committed by Alexandre Julliard
parent 70e240949c
commit 70f15b93f2
2 changed files with 3 additions and 3 deletions

View File

@ -2591,7 +2591,7 @@ static LRESULT CALLBACK rawinput_wndproc(HWND hwnd, UINT msg, WPARAM wparam, LPA
ret = GetRawInputData((HRAWINPUT)lparam, RID_INPUT, NULL, &raw_size, sizeof(RAWINPUTHEADER));
ok(ret == 0, "GetRawInputData failed\n");
ok(raw_size <= sizeof(raw), "Unexpected rawinput data size: %u", raw_size);
ok(raw_size <= sizeof(raw), "Unexpected rawinput data size: %u\n", raw_size);
raw_size = sizeof(raw);
ret = GetRawInputData((HRAWINPUT)lparam, RID_INPUT, &raw, &raw_size, sizeof(RAWINPUTHEADER));

View File

@ -1791,7 +1791,7 @@ static void test_QueryDisplayConfig_result(UINT32 flags,
/* Check corresponding modes */
if (pi[i].sourceInfo.modeInfoIdx == DISPLAYCONFIG_PATH_MODE_IDX_INVALID)
{
skip("Path doesn't contain source modeInfoIdx");
skip("Path doesn't contain source modeInfoIdx\n");
continue;
}
ok(pi[i].sourceInfo.modeInfoIdx < modes, "Expected index <%d, got %d\n", modes, pi[i].sourceInfo.modeInfoIdx);
@ -1814,7 +1814,7 @@ static void test_QueryDisplayConfig_result(UINT32 flags,
if (pi[i].targetInfo.modeInfoIdx == DISPLAYCONFIG_PATH_MODE_IDX_INVALID)
{
skip("Path doesn't contain target modeInfoIdx");
skip("Path doesn't contain target modeInfoIdx\n");
continue;
}
ok(pi[i].targetInfo.modeInfoIdx < modes, "Expected index <%d, got %d\n", modes, pi[i].targetInfo.modeInfoIdx);