Minor changes suggested by nabijaczleweli

This commit is contained in:
Ludger Sprenker 2016-02-06 16:08:48 +01:00
parent f37c95088c
commit 0837427e00
2 changed files with 3 additions and 3 deletions

View File

@ -463,10 +463,10 @@ TEST_CASE( "XmlEncode" ) {
SECTION( "string with control char (x7F)" ) {
REQUIRE( encode( "[\x7F]" ) == "[]" );
}
SECTION( "string with control char that is negativ on signed char (xFF)" ) {
SECTION( "string with control char that is negative on signed char (xFF)" ) {
REQUIRE( encode( "[\xFF]" ) == "[ÿ]" );
}
SECTION( "string with utf8 multi byte char (german 'ae' umlaut)" ) {
SECTION( "string with utf8 multibyte char (german 'ae' umlaut)" ) {
REQUIRE( encode( "[\xC3\xA4]" ) == "[\xC3\xA4]" );
}
}