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

This commit is contained in:
Francois Gouget 2008-01-07 11:16:33 +01:00 committed by Alexandre Julliard
parent 6bc088b28c
commit ca64f7c75a
1 changed files with 1 additions and 1 deletions

View File

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