File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public void DefaultOptions()
22
22
{
23
23
options = CSharp . Options . CreateWithEnvironment ( Array . Empty < string > ( ) ) ;
24
24
Assert . True ( options . Cache ) ;
25
- Assert . True ( options . CIL ) ;
25
+ Assert . False ( options . CIL ) ;
26
26
Assert . Null ( options . Framework ) ;
27
27
Assert . Null ( options . CompilerName ) ;
28
28
Assert . Empty ( options . CompilerArguments ) ;
@@ -52,7 +52,7 @@ public void Cache()
52
52
public void CIL ( )
53
53
{
54
54
options = CSharp . Options . CreateWithEnvironment ( Array . Empty < string > ( ) ) ;
55
- Assert . True ( options . CIL ) ;
55
+ Assert . False ( options . CIL ) ;
56
56
57
57
Environment . SetEnvironmentVariable ( "CODEQL_EXTRACTOR_CSHARP_OPTION_CIL" , "false" ) ;
58
58
options = CSharp . Options . CreateWithEnvironment ( Array . Empty < string > ( ) ) ;
@@ -64,7 +64,7 @@ public void CIL()
64
64
65
65
Environment . SetEnvironmentVariable ( "CODEQL_EXTRACTOR_CSHARP_OPTION_CIL" , null ) ;
66
66
options = CSharp . Options . CreateWithEnvironment ( Array . Empty < string > ( ) ) ;
67
- Assert . True ( options . CIL ) ;
67
+ Assert . False ( options . CIL ) ;
68
68
}
69
69
70
70
[ Fact ]
You can’t perform that action at this time.
0 commit comments