File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test/PowerShellEditorServices.Test/Session Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -550,7 +550,7 @@ public void PropertiesInitializedCorrectlyForFile()
550550 Assert . True ( scriptFile . IsAnalysisEnabled ) ;
551551 Assert . False ( scriptFile . IsInMemory ) ;
552552 Assert . Empty ( scriptFile . ReferencedFiles ) ;
553- Assert . Empty ( scriptFile . SyntaxMarkers ) ;
553+ Assert . Null ( scriptFile . SyntaxMarkers ) ;
554554 Assert . Single ( scriptFile . ScriptTokens ) ;
555555 Assert . Single ( scriptFile . FileLines ) ;
556556 }
@@ -576,7 +576,7 @@ public void PropertiesInitializedCorrectlyForUntitled()
576576 Assert . True ( scriptFile . IsAnalysisEnabled ) ;
577577 Assert . True ( scriptFile . IsInMemory ) ;
578578 Assert . Empty ( scriptFile . ReferencedFiles ) ;
579- Assert . Empty ( scriptFile . SyntaxMarkers ) ;
579+ Assert . Null ( scriptFile . SyntaxMarkers ) ;
580580 Assert . Equal ( 10 , scriptFile . ScriptTokens . Length ) ;
581581 Assert . Equal ( 3 , scriptFile . FileLines . Count ) ;
582582 }
You can’t perform that action at this time.
0 commit comments