Add trailing '\n's to ok() calls.
Remove spaces before '\n'.
This commit is contained in:
parent
11ae0f6386
commit
9eb81363ad
|
@ -154,7 +154,7 @@ static void test_missing_light_recording(IDirect3DDevice9 *device_ptr)
|
|||
hret = IDirect3DDevice9_GetLightEnable(device_ptr, 0, &result_light_enable);
|
||||
ok(hret == D3D_OK, "GetLightEnable returned: hret 0x%lx. Expected hret 0x%lx. Aborting.\n", hret, D3D_OK);
|
||||
if (hret != D3D_OK) goto cleanup;
|
||||
ok(result_light_enable == 0, "Light enabled status was %u, instead of 0", result_light_enable);
|
||||
ok(result_light_enable == 0, "Light enabled status was %u, instead of 0\n", result_light_enable);
|
||||
|
||||
hret = IDirect3DDevice9_GetLight(device_ptr, 0, &result_light);
|
||||
ok(hret == D3D_OK, "GetLight returned: hret 0x%lx. Expected hret 0x%lx. Aborting.\n", hret, D3D_OK);
|
||||
|
|
|
@ -806,7 +806,7 @@ static void test_EM_SETUNDOLIMIT()
|
|||
SendMessage(hwndRichEdit,EM_EMPTYUNDOBUFFER, 0,0);
|
||||
result = SendMessage(hwndRichEdit, EM_SETUNDOLIMIT, -1, 0);
|
||||
ok (result == 100,
|
||||
"EM_SETUNDOLIMIT returned %d when set to -1, instead of 100",result);
|
||||
"EM_SETUNDOLIMIT returned %d when set to -1, instead of 100\n",result);
|
||||
|
||||
DestroyWindow(hwndRichEdit);
|
||||
}
|
||||
|
|
|
@ -189,7 +189,7 @@ static void test_CloseThemeData(void)
|
|||
|
||||
SetLastError(0xdeadbeef);
|
||||
hRes = pCloseThemeData(NULL);
|
||||
ok( hRes == E_HANDLE, "Expected E_HANDLE, got 0x%08lx", hRes);
|
||||
ok( hRes == E_HANDLE, "Expected E_HANDLE, got 0x%08lx\n", hRes);
|
||||
ok( GetLastError() == 0xdeadbeef,
|
||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
||||
GetLastError());
|
||||
|
|
Loading…
Reference in New Issue