File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test/Microsoft.NET.Sdk.Razor.Tests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ public class AspNetSdkBaselineTest : AspNetSdkTest
2222#if GENERATE_SWA_BASELINES
2323 public static bool GenerateBaselines = true ;
2424#else
25- public static bool GenerateBaselines = true || bool . TryParse ( Environment . GetEnvironmentVariable ( "ASPNETCORE_TEST_BASELINES" ) , out var result ) && result ;
25+ public static bool GenerateBaselines = bool . TryParse ( Environment . GetEnvironmentVariable ( "ASPNETCORE_TEST_BASELINES" ) , out var result ) && result ;
2626#endif
2727
28- private readonly bool _generateBaselines = true || GenerateBaselines ;
28+ private readonly bool _generateBaselines = GenerateBaselines ;
2929
3030 public AspNetSdkBaselineTest ( ITestOutputHelper log ) : base ( log )
3131 {
You can’t perform that action at this time.
0 commit comments