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

Francois Gouget fgouget at free.fr
Tue Nov 2 05:44:19 CDT 2010


---
 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 90ce03a..189451e 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 */
-- 
1.7.1




More information about the wine-patches mailing list