Commit 70f15b93 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 70e24094
......@@ -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));
......
......@@ -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);
......
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