oleaut32/tests: Add a trailing '\n' to a couple of ok() calls.

This commit is contained in:
Francois Gouget 2013-08-28 16:25:31 +02:00 committed by Alexandre Julliard
parent 7db2691e6f
commit a205171b4f
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}