Alistair Leslie-Hughes : msxml3: Corrected Entity Reference Test.

Alexandre Julliard julliard at winehq.org
Mon Feb 4 08:43:14 CST 2008


Module: wine
Branch: master
Commit: d4a4b12a43345b9f3eafedeec1c980fc357b41e8
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d4a4b12a43345b9f3eafedeec1c980fc357b41e8

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Fri Feb  1 20:49:05 2008 +1100

msxml3: Corrected Entity Reference Test.

---

 dlls/msxml3/tests/domdoc.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msxml3/tests/domdoc.c b/dlls/msxml3/tests/domdoc.c
index e5dfbcc..6f4f7f2 100644
--- a/dlls/msxml3/tests/domdoc.c
+++ b/dlls/msxml3/tests/domdoc.c
@@ -156,7 +156,7 @@ static WCHAR szCDataXML[] = {'<','!','[','C','D','A','T','A','[','[','1',']','*'
 static WCHAR szCDataNodeText[] = {'#','c','d','a','t','a','-','s','e','c','t','i','o','n',0 };
 static WCHAR szDocFragmentText[] = {'#','d','o','c','u','m','e','n','t','-','f','r','a','g','m','e','n','t',0 };
 
-static WCHAR szEntityRef[] = {'E','n','t','i','t','y','r','e','f',0 };
+static WCHAR szEntityRef[] = {'e','n','t','i','t','y','r','e','f',0 };
 static WCHAR szEntityRefXML[] = {'&','e','n','t','i','t','y','r','e','f',';',0 };
 
 #define expect_bstr_eq_and_free(bstr, expect) { \
@@ -2298,7 +2298,7 @@ static void test_xmlTypes(void)
                 /* test get_xml*/
                 hr = IXMLDOMEntityReference_get_xml(pEntityRef, &str);
                 ok(hr == S_OK, "ret %08x\n", hr );
-                todo_wine ok( !lstrcmpW( str, szEntityRefXML ), "incorrect xml string\n");
+                ok( !lstrcmpW( str, szEntityRefXML ), "incorrect xml string\n");
                 SysFreeString(str);
 
                 IXMLDOMEntityReference_Release(pEntityRef);




More information about the wine-cvs mailing list