@@ -12,7 +12,7 @@ internal static class CompleteCommandInFile
12
12
file : TestUtilities . NormalizePath ( "Completion/CompletionExamples.psm1" ) ,
13
13
text : string . Empty ,
14
14
startLineNumber : 8 ,
15
- startColumnNumber : 7 ,
15
+ startColumnNumber : 10 ,
16
16
startOffset : 0 ,
17
17
endLineNumber : 0 ,
18
18
endColumnNumber : 0 ,
@@ -22,17 +22,17 @@ internal static class CompleteCommandInFile
22
22
{
23
23
Kind = CompletionItemKind . Function ,
24
24
Detail = "" ,
25
- FilterText = "Get-Something " ,
26
- InsertText = "Get-Something " ,
27
- Label = "Get-Something " ,
28
- SortText = "0001Get-Something " ,
25
+ FilterText = "Get-XYZSomething " ,
26
+ InsertText = "Get-XYZSomething " ,
27
+ Label = "Get-XYZSomething " ,
28
+ SortText = "0001Get-XYZSomething " ,
29
29
TextEdit = new TextEdit
30
30
{
31
- NewText = "Get-Something " ,
31
+ NewText = "Get-XYZSomething " ,
32
32
Range = new Range
33
33
{
34
34
Start = new Position { Line = 7 , Character = 0 } ,
35
- End = new Position { Line = 7 , Character = 6 }
35
+ End = new Position { Line = 7 , Character = 9 }
36
36
}
37
37
}
38
38
} ;
0 commit comments