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
22
22
#if GENERATE_SWA_BASELINES
23
23
public static bool GenerateBaselines = true ;
24
24
#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 ;
26
26
#endif
27
27
28
- private readonly bool _generateBaselines = true || GenerateBaselines ;
28
+ private readonly bool _generateBaselines = GenerateBaselines ;
29
29
30
30
public AspNetSdkBaselineTest ( ITestOutputHelper log ) : base ( log )
31
31
{
You can’t perform that action at this time.
0 commit comments