File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
test/PowerShellEditorServices.Test/Language Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -110,9 +110,9 @@ public async Task CompletesAttributeValue()
110110 {
111111 ( _ , IEnumerable < CompletionItem > results ) = await GetCompletionResultsAsync ( CompleteAttributeValue . SourceDetails ) . ConfigureAwait ( true ) ;
112112 Assert . Collection ( results . OrderBy ( c => c . SortText ) ,
113- actual => Assert . Equal ( actual , CompleteAttributeValue . ExpectedCompletion1 ) ,
114- actual => Assert . Equal ( actual , CompleteAttributeValue . ExpectedCompletion2 ) ,
115- actual => Assert . Equal ( actual , CompleteAttributeValue . ExpectedCompletion3 ) ) ;
113+ actual => Assert . Equal ( actual with { Data = null } , CompleteAttributeValue . ExpectedCompletion1 ) ,
114+ actual => Assert . Equal ( actual with { Data = null } , CompleteAttributeValue . ExpectedCompletion2 ) ,
115+ actual => Assert . Equal ( actual with { Data = null } , CompleteAttributeValue . ExpectedCompletion3 ) ) ;
116116 }
117117
118118 [ Fact ]
You can’t perform that action at this time.
0 commit comments