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

Alexandre Julliard julliard at winehq.org
Tue Nov 2 11:10:59 CDT 2010


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Nov  2 11:44:19 2010 +0100

msxml3/tests: Add a trailing '\n' to ok() calls.

---

 dlls/msxml3/tests/schema.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/msxml3/tests/schema.c b/dlls/msxml3/tests/schema.c
index 2ca657a..b457f0e 100644
--- a/dlls/msxml3/tests/schema.c
+++ b/dlls/msxml3/tests/schema.c
@@ -383,15 +383,15 @@ static void test_collection_refs(void)
 
     length = -1;
     ole_check(IXMLDOMSchemaCollection_get_length(cache1, &length));
-    ok(length == 1, "expected length 1, got %i", length);
+    ok(length == 1, "expected length 1, got %i\n", length);
 
     length = -1;
     ole_check(IXMLDOMSchemaCollection_get_length(cache2, &length));
-    ok(length == 2, "expected length 2, got %i", length);
+    ok(length == 2, "expected length 2, got %i\n", length);
 
     length = -1;
     ole_check(IXMLDOMSchemaCollection_get_length(cache3, &length));
-    ok(length == 3, "expected length 3, got %i", length);
+    ok(length == 3, "expected length 3, got %i\n", length);
 
 
     /* merging collections does not affect the ref count */




More information about the wine-cvs mailing list