File tree 1 file changed +2
-2
lines changed
test/PowerShellEditorServices.Test/Session
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -550,7 +550,7 @@ public void PropertiesInitializedCorrectlyForFile()
550
550
Assert . True ( scriptFile . IsAnalysisEnabled ) ;
551
551
Assert . False ( scriptFile . IsInMemory ) ;
552
552
Assert . Empty ( scriptFile . ReferencedFiles ) ;
553
- Assert . Empty ( scriptFile . SyntaxMarkers ) ;
553
+ Assert . Null ( scriptFile . SyntaxMarkers ) ;
554
554
Assert . Single ( scriptFile . ScriptTokens ) ;
555
555
Assert . Single ( scriptFile . FileLines ) ;
556
556
}
@@ -576,7 +576,7 @@ public void PropertiesInitializedCorrectlyForUntitled()
576
576
Assert . True ( scriptFile . IsAnalysisEnabled ) ;
577
577
Assert . True ( scriptFile . IsInMemory ) ;
578
578
Assert . Empty ( scriptFile . ReferencedFiles ) ;
579
- Assert . Empty ( scriptFile . SyntaxMarkers ) ;
579
+ Assert . Null ( scriptFile . SyntaxMarkers ) ;
580
580
Assert . Equal ( 10 , scriptFile . ScriptTokens . Length ) ;
581
581
Assert . Equal ( 3 , scriptFile . FileLines . Count ) ;
582
582
}
You can’t perform that action at this time.
0 commit comments