From ca64f7c75a95cb77a608a12839771bdb223aff43 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Mon, 7 Jan 2008 11:16:33 +0100 Subject: [PATCH] msxml3/tests: Add the trailing '\n' to an ok() call. --- dlls/msxml3/tests/domdoc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msxml3/tests/domdoc.c b/dlls/msxml3/tests/domdoc.c index c4f8882fb9f..67897e353e9 100644 --- a/dlls/msxml3/tests/domdoc.c +++ b/dlls/msxml3/tests/domdoc.c @@ -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 );