Module: wine Branch: master Commit: 587328312bc6ce3496b22493c211b7c14628dec3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=587328312bc6ce3496b22493c2...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Fri Feb 8 21:40:39 2008 +1100
msxml3: Corrected test text.
---
dlls/msxml3/tests/xmldoc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msxml3/tests/xmldoc.c b/dlls/msxml3/tests/xmldoc.c index 89c73cf..0d1c90a 100644 --- a/dlls/msxml3/tests/xmldoc.c +++ b/dlls/msxml3/tests/xmldoc.c @@ -270,7 +270,7 @@ static void test_createElement(void) V_I4(&vType) = -1; V_VT(&vName) = VT_NULL; hr = IXMLDocument_createElement(doc, vType, vName, &element); - ok(hr == E_NOTIMPL, "Expected S_OK, got %d\n", hr); + ok(hr == E_NOTIMPL, "Expected E_NOTIMPL, got %d\n", hr); ok(element == NULL, "Expected NULL element\n");
if (element != NULL)