Use escape sequence instead of char in utf-8 tests. (#83595)
authorIlona Tomkowicz <32700855+ilonatommy@users.noreply.github.com>
Mon, 20 Mar 2023 15:24:55 +0000 (16:24 +0100)
committerGitHub <noreply@github.com>
Mon, 20 Mar 2023 15:24:55 +0000 (16:24 +0100)
src/mono/wasm/Wasm.Build.Tests/BuildTestBase.cs

index ca01749..19ddf29 100644 (file)
@@ -31,7 +31,7 @@ namespace Wasm.Build.Tests
         public const string DefaultTargetFramework = "net8.0";
         public const string DefaultTargetFrameworkForBlazor = "net8.0";
         private const string DefaultEnvironmentLocale = "en-US";
-        protected static readonly char s_unicodeChar = '';
+        protected static readonly char s_unicodeChar = '\u7149';
         protected static readonly bool s_skipProjectCleanup;
         protected static readonly string s_xharnessRunnerCommand;
         protected string? _projectDir;