diff --git a/projects/SelfTest/MiscTests.cpp b/projects/SelfTest/MiscTests.cpp index eb241465..083e52eb 100644 --- a/projects/SelfTest/MiscTests.cpp +++ b/projects/SelfTest/MiscTests.cpp @@ -463,8 +463,8 @@ TEST_CASE( "XmlEncode" ) { SECTION( "string with control char (x7F)" ) { REQUIRE( encode( "[\x7F]" ) == "[]" ); } - SECTION( "string with utf-8 characters (πσρρκθι ςεκρς)" ) { - REQUIRE( encode( "πσρρκθι ςεκρς" ) == "πσρρκθι ςεκρς" ); + SECTION( "string with utf-8 characters (русский тСкст)" ) { + REQUIRE( encode( "русский тСкст" ) == "русский тСкст" ); } }