Commit e86063d6 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

msxml3/tests: Check the correct return value.

parent 24a01dfe
...@@ -2656,7 +2656,7 @@ if (0) ...@@ -2656,7 +2656,7 @@ if (0)
/* baseName */ /* baseName */
str = (BSTR)0xdeadbeef; str = (BSTR)0xdeadbeef;
IXMLDOMComment_get_baseName(node_comment, &str); r = IXMLDOMComment_get_baseName(node_comment, &str);
ok(r == S_FALSE, "ret %08x\n", r ); ok(r == S_FALSE, "ret %08x\n", r );
ok(str == NULL, "Expected NULL\n"); ok(str == NULL, "Expected NULL\n");
......
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