Fix test_ns_unknown_encoding_success() to work in UTF-16 builds

This commit is contained in:
Rhodri James 2017-08-22 18:41:20 +01:00 committed by Sebastian Pipping
parent 17fbf194f8
commit 5042762639

View File

@ -7705,7 +7705,7 @@ START_TEST(test_ns_unknown_encoding_success)
"<foo:e xmlns:foo='http://example.org/'>Hi</foo:e>";
XML_SetUnknownEncodingHandler(parser, MiscEncodingHandler, NULL);
run_character_check(text, "Hi");
run_character_check(text, XCS("Hi"));
}
END_TEST