Francois Gouget : oleaut32/tests: Add a trailing '\n' to a couple of ok() calls.
Module: wine Branch: master Commit: a205171b4fbb7f9f8ca6fcb57a477f5fa79afb0a URL: http://source.winehq.org/git/wine.git/?a=commit;h=a205171b4fbb7f9f8ca6fcb57a... Author: Francois Gouget <fgouget(a)free.fr> Date: Wed Aug 28 16:25:31 2013 +0200 oleaut32/tests: Add a trailing '\n' to a couple of ok() calls. --- dlls/oleaut32/tests/typelib.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/oleaut32/tests/typelib.c b/dlls/oleaut32/tests/typelib.c index 57e289a..8b91212 100644 --- a/dlls/oleaut32/tests/typelib.c +++ b/dlls/oleaut32/tests/typelib.c @@ -4897,7 +4897,7 @@ static void test_SetTypeDescAlias(SYSKIND kind) ok(hr == S_OK, "got %08x\n", hr); ITypeLib_Release(tl); - ok(0 == ICreateTypeLib2_Release(ctl), "typelib should have been released"); + ok(0 == ICreateTypeLib2_Release(ctl), "typelib should have been released\n"); trace("after save...\n"); @@ -4919,7 +4919,7 @@ static void test_SetTypeDescAlias(SYSKIND kind) for(i = 0; TDATests[i].vt; ++i) testTDA(tl, &TDATests[i], ptr_size, hreftype, href_cbSizeInstance, href_cbAlignment, FALSE); - ok(0 == ITypeLib_Release(tl), "typelib should have been released"); + ok(0 == ITypeLib_Release(tl), "typelib should have been released\n"); DeleteFileA(filenameA); }
participants (1)
-
Alexandre Julliard