Commit 59f8cd53 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

msxml3/tests: Compare instead of assign.

parent 682890ae
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment