Skip to content
Prev Previous commit
Next Next commit
Use escape sequences on hardcoded UTF8 characters
  • Loading branch information
jozkee authored and github-actions committed Sep 28, 2022
commit e4b1c692cf85ac18d69dcfa9a282114c8634df50
4 changes: 2 additions & 2 deletions src/libraries/System.Formats.Tar/tests/TarTestsBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ public abstract partial class TarTestsBase : FileCleanupTestBase
protected const string PaxEaDevMajor = "devmajor";
protected const string PaxEaDevMinor = "devminor";
internal const char OneByteCharacter = 'a';
internal const char TwoBytesCharacter = 'ö';
internal const string FourBytesCharacter = "😒";
internal const char TwoBytesCharacter = '\u00F6';
internal const string FourBytesCharacter = "\uD83D\uDE12";
internal const char Separator = '/';
internal const int MaxPathComponent = 255;

Expand Down