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()
2222 {
2323 options = CSharp . Options . CreateWithEnvironment ( Array . Empty < string > ( ) ) ;
2424 Assert . True ( options . Cache ) ;
25- Assert . True ( options . CIL ) ;
25+ Assert . False ( options . CIL ) ;
2626 Assert . Null ( options . Framework ) ;
2727 Assert . Null ( options . CompilerName ) ;
2828 Assert . Empty ( options . CompilerArguments ) ;
@@ -52,7 +52,7 @@ public void Cache()
5252 public void CIL ( )
5353 {
5454 options = CSharp . Options . CreateWithEnvironment ( Array . Empty < string > ( ) ) ;
55- Assert . True ( options . CIL ) ;
55+ Assert . False ( options . CIL ) ;
5656
5757 Environment . SetEnvironmentVariable ( "CODEQL_EXTRACTOR_CSHARP_OPTION_CIL" , "false" ) ;
5858 options = CSharp . Options . CreateWithEnvironment ( Array . Empty < string > ( ) ) ;
@@ -64,7 +64,7 @@ public void CIL()
6464
6565 Environment . SetEnvironmentVariable ( "CODEQL_EXTRACTOR_CSHARP_OPTION_CIL" , null ) ;
6666 options = CSharp . Options . CreateWithEnvironment ( Array . Empty < string > ( ) ) ;
67- Assert . True ( options . CIL ) ;
67+ Assert . False ( options . CIL ) ;
6868 }
6969
7070 [ Fact ]
You can’t perform that action at this time.
0 commit comments