testlib icon indicating copy to clipboard operation
testlib copied to clipboard

Use utf-8 as checker appes mode report encoding

Open yzy-1 opened this issue 2 years ago • 0 comments

encoding=windows-1251 tells the XML parser to parse the entire XML as windows-1251 encoding. Since this encoding is ASCII compatible, this works fine in most cases. However, some "smart" parsers will parse the XML according to the windows-1251 encoding and cause errors when the message contains characters that are not in the windows-1251 range (such as Chinese characters).

Since modern editors will save code in utf-8 encoding by default, the resulting report information should also be utf-8 encoded.

yzy-1 avatar Sep 21 '22 05:09 yzy-1