File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test/PowerShellEditorServices.Test/Language Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -109,9 +109,9 @@ public async Task CompletesVariableInFile()
109109 public async Task CompletesAttributeValue ( )
110110 {
111111 IEnumerable < CompletionItem > results = await GetCompletionResultsAsync ( CompleteAttributeValue . SourceDetails ) . ConfigureAwait ( true ) ;
112- Assert . Collection ( results ,
112+ Assert . Collection ( results . OrderBy ( c => c . SortText ) ,
113113 actual => Assert . Equal ( actual , CompleteAttributeValue . ExpectedCompletion1 ) ,
114- acutal => Assert . Equal ( acutal , CompleteAttributeValue . ExpectedCompletion2 ) ,
114+ actual => Assert . Equal ( actual , CompleteAttributeValue . ExpectedCompletion2 ) ,
115115 actual => Assert . Equal ( actual , CompleteAttributeValue . ExpectedCompletion3 ) ) ;
116116 }
117117
You can’t perform that action at this time.
0 commit comments