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

Alexandre Julliard julliard at winehq.org
Wed May 29 14:47:33 CDT 2013


Module: wine
Branch: master
Commit: 440e936abe234fa5f6378d9ca76ef018b816f89a
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=440e936abe234fa5f6378d9ca76ef018b816f89a

Author: Francois Gouget <fgouget at free.fr>
Date:   Wed May 29 07:45:54 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 32d8a04..0bc1854 100644
--- a/dlls/oleaut32/tests/typelib.c
+++ b/dlls/oleaut32/tests/typelib.c
@@ -3410,14 +3410,14 @@ static void test_TypeInfo2_GetContainingTypeLib(void)
     Index = 888;
     hr = ITypeInfo2_GetContainingTypeLib(ti2, &tl, &Index);
     ok_ole_success(hr, ITypeInfo2_GetContainingTypeLib);
-    ok(tl != NULL, "ITypeInfo2_GetContainingTypeLib returned empty TypeLib");
+    ok(tl != NULL, "ITypeInfo2_GetContainingTypeLib returned empty TypeLib\n");
     ok(Index == 0, "ITypeInfo2_GetContainingTypeLib returned Index = %u, expected 0\n", Index);
     if(tl) ITypeLib_Release(tl);
 
     tl = NULL;
     hr = ITypeInfo2_GetContainingTypeLib(ti2, &tl, NULL);
     ok_ole_success(hr, ITypeInfo2_GetContainingTypeLib);
-    ok(tl != NULL, "ITypeInfo2_GetContainingTypeLib returned empty TypeLib");
+    ok(tl != NULL, "ITypeInfo2_GetContainingTypeLib returned empty TypeLib\n");
     if(tl) ITypeLib_Release(tl);
 
     Index = 888;




More information about the wine-cvs mailing list