Commit ca64f7c7 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msxml3/tests: Add the trailing '\n' to an ok() call.

parent 6bc088b2
......@@ -1827,7 +1827,7 @@ static void test_xmlTypes(void)
IXMLDOMNode *pNewChild = (IXMLDOMNode *)0x1;
hr = IXMLDOMElement_appendChild(pElement, (IXMLDOMNode*)pAttrubute, &pNewChild);
ok(hr == E_FAIL, "ret %08x\n", hr );
ok(pNewChild == NULL, "pNewChild not NULL");
ok(pNewChild == NULL, "pNewChild not NULL\n");
hr = IXMLDOMElement_get_attributes(pElement, &pAttribs);
ok(hr == S_OK, "ret %08x\n", hr );
......
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