File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
test/Microsoft.ML.TestFramework Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 33// See the LICENSE file in the project root for more information.
44
55using Microsoft . ML . Runtime . Internal . Internallearn . Test ;
6+ using System . Globalization ;
67using System . IO ;
8+ using System . Threading ;
79using Xunit . Abstractions ;
810
911namespace Microsoft . ML . TestFramework
@@ -18,6 +20,8 @@ public class BaseTestClass
1820
1921 public BaseTestClass ( ITestOutputHelper output )
2022 {
23+ Thread . CurrentThread . CurrentCulture = new CultureInfo ( "en-US" ) ;
24+
2125 var currentAssemblyLocation = new FileInfo ( typeof ( BaseTestClass ) . Assembly . Location ) ;
2226 _rootDir = currentAssemblyLocation . Directory . Parent . Parent . Parent . Parent . FullName ;
2327 _outDir = Path . Combine ( currentAssemblyLocation . Directory . FullName , "TestOutput" ) ;
You can’t perform that action at this time.
0 commit comments