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()
109
109
public async Task CompletesAttributeValue ( )
110
110
{
111
111
IEnumerable < CompletionItem > results = await GetCompletionResultsAsync ( CompleteAttributeValue . SourceDetails ) . ConfigureAwait ( true ) ;
112
- Assert . Collection ( results ,
112
+ Assert . Collection ( results . OrderBy ( c => c . SortText ) ,
113
113
actual => Assert . Equal ( actual , CompleteAttributeValue . ExpectedCompletion1 ) ,
114
- acutal => Assert . Equal ( acutal , CompleteAttributeValue . ExpectedCompletion2 ) ,
114
+ actual => Assert . Equal ( actual , CompleteAttributeValue . ExpectedCompletion2 ) ,
115
115
actual => Assert . Equal ( actual , CompleteAttributeValue . ExpectedCompletion3 ) ) ;
116
116
}
117
117
You can’t perform that action at this time.
0 commit comments