[PATCH] msxml3/tests: Fix the spelling of a test string.

Francois Gouget fgouget at free.fr
Mon Nov 30 09:23:19 CST 2020


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/msxml3/tests/domdoc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msxml3/tests/domdoc.c b/dlls/msxml3/tests/domdoc.c
index e27754d457a..e94a2c88a81 100644
--- a/dlls/msxml3/tests/domdoc.c
+++ b/dlls/msxml3/tests/domdoc.c
@@ -5877,7 +5877,7 @@ static void test_xmlTypes(void)
             }
 
             /* CData Section */
-            str = SysAllocString(L"[1]*2=3; &gee thats not right!");
+            str = SysAllocString(L"[1]*2=3; &gee that is not right!");
             hr = IXMLDOMDocument_createCDATASection(doc, str, NULL);
             ok(hr == E_INVALIDARG, "ret %08x\n", hr );
 
@@ -5904,7 +5904,7 @@ static void test_xmlTypes(void)
 
                 hr = IXMLDOMCDATASection_get_xml(pCDataSec, &str);
                 ok(hr == S_OK, "ret %08x\n", hr );
-                ok( !lstrcmpW( str, L"<![CDATA[[1]*2=3; &gee thats not right!]]>" ), "incorrect cdata xml\n");
+                ok( !lstrcmpW( str, L"<![CDATA[[1]*2=3; &gee that is not right!]]>" ), "incorrect cdata xml\n");
                 SysFreeString(str);
 
                 /* test lastChild */
-- 
2.20.1



More information about the wine-devel mailing list