Michael Stefaniuc : msxml3/tests: Fix the expected values in some ok() messages.

Alexandre Julliard julliard at winehq.org
Mon Jun 4 13:27:14 CDT 2012


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

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Mon Jun  4 17:31:18 2012 +0200

msxml3/tests: Fix the expected values in some ok() messages.

---

 dlls/msxml3/tests/saxreader.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msxml3/tests/saxreader.c b/dlls/msxml3/tests/saxreader.c
index 003446f..33ac2dc 100644
--- a/dlls/msxml3/tests/saxreader.c
+++ b/dlls/msxml3/tests/saxreader.c
@@ -4580,9 +4580,9 @@ static void test_mxattr_addAttribute(void)
         hr = ISAXAttributes_getLength(saxattr, &len);
         EXPECT_HR(hr, S_OK);
         if (table->hr == S_OK)
-            ok(len == 1, "%d: got %d length, expected 0\n", i, len);
+            ok(len == 1, "%d: got %d length, expected 1\n", i, len);
         else
-            ok(len == 0, "%d: got %d length, expected 1\n", i, len);
+            ok(len == 0, "%d: got %d length, expected 0\n", i, len);
 
         ISAXAttributes_Release(saxattr);
         IMXAttributes_Release(mxattr);




More information about the wine-cvs mailing list