Skip to content

Commit 29e1548

Browse files
committed
Revert "Explicitly set culture in the Wasm test driver."
This reverts commit e937ae9.
1 parent 54da4e6 commit 29e1548

File tree

1 file changed

+0
-5
lines changed
  • src/Components/benchmarkapps/Wasm.Performance/Driver

1 file changed

+0
-5
lines changed

src/Components/benchmarkapps/Wasm.Performance/Driver/Program.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
using System.Globalization;
54
using System.Reflection;
65
using System.Runtime.ExceptionServices;
76
using System.Text;
@@ -21,10 +20,6 @@ public class Program
2120

2221
public static async Task<int> Main(string[] args)
2322
{
24-
// Set culture to en-US to avoid invalid @posix suffix. Fixes https://github.com/dotnet/aspnetcore/issues/64450
25-
CultureInfo.CurrentCulture = CultureInfo.GetCultureInfo("en-US");
26-
CultureInfo.CurrentUICulture = CultureInfo.GetCultureInfo("en-US");
27-
2823
// This cancellation token manages the timeout for the stress run.
2924
// By default the driver executes and reports a single Benchmark run. For stress runs,
3025
// we'll pass in the duration to execute the runs in seconds. This will cause this driver

0 commit comments

Comments
 (0)