msxml3/tests: Compare instead of assign.

This commit is contained in:
Paul Vriens 2008-10-08 08:55:02 +02:00 committed by Alexandre Julliard
parent 682890ae4d
commit 59f8cd533d
1 changed files with 1 additions and 1 deletions

View File

@ -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 );