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

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2020-11-30 16:23:19 +01:00 committed by Alexandre Julliard
parent dcdd98f5c1
commit 251a2b955a
1 changed files with 2 additions and 2 deletions

View File

@ -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 */