Commit 6825ed81 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Added missing trailing '\n's to ok() calls.

parent cdf631fb
......@@ -299,7 +299,7 @@ static void test_EnumCodePages(IMultiLanguage2 *iML2, DWORD flags)
if (!flags)
{
ok(n == total, "IEnumCodePage_Next: expected %u, got %lu", total, n);
ok(n == total, "IEnumCodePage_Next: expected %u, got %lu\n", total, n);
flags = MIMECONTF_MIME_LATEST;
}
......
......@@ -58,7 +58,7 @@ void test_hglobal_storage_stat(void)
todo_wine {
ok( stat.grfMode == 0x12, "grf mode is incorrect\n");
}
ok( !memcmp(&stat.clsid, &test_stg_cls, sizeof test_stg_cls), "CLSID is wrong");
ok( !memcmp(&stat.clsid, &test_stg_cls, sizeof test_stg_cls), "CLSID is wrong\n");
refcount = IStorage_Release( stg );
ok( refcount == 0, "IStorage refcount is wrong\n");
......
......@@ -76,7 +76,7 @@ static void test_ClipboardOwner(void)
ok(!OpenClipboard(hWnd2) && GetLastError() == 0xdeadbeef,
"OpenClipboard should fail without setting last error value\n");
ok(CloseClipboard(), "CloseClipboard error %ld", GetLastError());
ok(CloseClipboard(), "CloseClipboard error %ld\n", GetLastError());
ok(GetClipboardOwner() == hWnd1, "clipboard should still be owned\n");
ok(DestroyWindow(hWnd1), "DestroyWindow error %ld\n", GetLastError());
......
......@@ -562,7 +562,7 @@ static void WM_NEXTDLGCTLTest(void)
DefDlgProcA( g_hwndTestDlgBut1, BM_SETSTYLE, BS_DEFPUSHBUTTON, FALSE );
dwVal = DefDlgProcA(g_hwndTestDlg, DM_GETDEFID, 0, 0);
ok ( IDCANCEL == (LOWORD(dwVal)), "Did not set default ID" );
ok ( IDCANCEL == (LOWORD(dwVal)), "Did not set default ID\n" );
/*
* Check whether message WM_NEXTDLGCTL is changing the focus to next control and if
......
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