Commit 251a2b95 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent dcdd98f5
...@@ -5877,7 +5877,7 @@ static void test_xmlTypes(void) ...@@ -5877,7 +5877,7 @@ static void test_xmlTypes(void)
} }
/* CData Section */ /* 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); hr = IXMLDOMDocument_createCDATASection(doc, str, NULL);
ok(hr == E_INVALIDARG, "ret %08x\n", hr ); ok(hr == E_INVALIDARG, "ret %08x\n", hr );
...@@ -5904,7 +5904,7 @@ static void test_xmlTypes(void) ...@@ -5904,7 +5904,7 @@ static void test_xmlTypes(void)
hr = IXMLDOMCDATASection_get_xml(pCDataSec, &str); hr = IXMLDOMCDATASection_get_xml(pCDataSec, &str);
ok(hr == S_OK, "ret %08x\n", hr ); 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); SysFreeString(str);
/* test lastChild */ /* test lastChild */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment