Paul Vriens : msxml3/tests: Compare instead of assign.

Alexandre Julliard julliard at winehq.org
Wed Oct 8 08:32:46 CDT 2008


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

Author: Paul Vriens <Paul.Vriens.Wine at gmail.com>
Date:   Wed Oct  8 08:55:02 2008 +0200

msxml3/tests: Compare instead of assign.

---

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

diff --git a/dlls/msxml3/tests/domdoc.c b/dlls/msxml3/tests/domdoc.c
index aeb53d7..f985dfd 100644
--- a/dlls/msxml3/tests/domdoc.c
+++ b/dlls/msxml3/tests/domdoc.c
@@ -995,7 +995,7 @@ todo_wine
         str = SysAllocString( szOpen );
         node = (IXMLDOMNode *) 1;
         r = IXMLDOMNamedNodeMap_getNamedItem( map, str, &node );
-        ok( r = S_FALSE, "getNamedItem found a node that wasn't there\n");
+        ok( r == S_FALSE, "getNamedItem found a node that wasn't there\n");
         ok( node == NULL, "getNamedItem should have returned NULL\n");
         SysFreeString( str );
 




More information about the wine-cvs mailing list