Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 127b083

Browse files
committedMar 2, 2025
Fix CompletesAttributeValue Test
1 parent b0b0e4c commit 127b083

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
 

‎test/PowerShellEditorServices.Test.Shared/Completion/CompletionExamples.psm1

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Import-Module PowerShellGet
1313
Get-Rand
1414

1515
function Test-Completion {
16-
param([Parameter(Mandatory, Value)])
16+
param([Parameter(Mandatory, Value)]$test)
1717
}
1818

1919
Get-ChildItem /

‎test/PowerShellEditorServices.Test/Language/CompletionHandlerTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ public async Task CompletesVariableInFile()
105105
[SkippableFact]
106106
public async Task CompletesAttributeValue()
107107
{
108-
Skip.If(VersionUtils.IsPS74, "PowerShell 7.4 isn't returning these!");
109108
(_, IEnumerable<CompletionItem> results) = await GetCompletionResultsAsync(CompleteAttributeValue.SourceDetails);
110109
// NOTE: Since the completions come through un-ordered from PowerShell, their SortText
111110
// (which has an index prepended from the original order) will mis-match our assumed

0 commit comments

Comments
 (0)
Please sign in to comment.