mirror of
https://github.com/catchorg/Catch2.git
synced 2025-07-01 15:15:32 +02:00
Minor changes suggested by nabijaczleweli
This commit is contained in:
parent
f37c95088c
commit
0837427e00
@ -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]" );
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user