Skip to content

Commit 9ae075e

Browse files
Robert HoltTylerLeonhardt
Robert Holt
authored andcommitted
[Ignore] Fix test typos
1 parent e570335 commit 9ae075e

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

module/PowerShellEditorServices/PowerShellEditorServices.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'PowerShellEditorServices.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.10.2'
15+
ModuleVersion = '2.0.0'
1616

1717
# ID used to uniquely identify this module
1818
GUID = '9ca15887-53a2-479a-9cda-48d26bcb6c47'

src/PowerShellEditorServices/Language/LanguageService.cs

-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,6 @@ public async Task<FindReferencesResult> FindReferencesOfSymbol(
355355
foreach (object fileName in fileMap.Keys)
356356
{
357357
var file = (ScriptFile)fileMap[fileName];
358-
IEnumerable<SymbolReference> symbolReferencesinFile;
359358
await _aliasHandle.WaitAsync();
360359
try
361360
{

test/PowerShellEditorServices.Test/Session/WorkspaceTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ public static IEnumerable<object[]> PathResolutionInput
126126
return new [] {
127127
new [] { "file:///banana/", "/banana/" },
128128
new [] { "file:///banana/ex.ps1", "/banana/ex.ps1" },
129-
new [] { "file://Path/to/awful%23path", "/Path/to/awful#path" },
130-
new [] { "file:///path/wi[th]/squ[are/brackets/", "/path/wi[th]/sq[are/brackets/" },
129+
new [] { "file:///Path/to/awful%23path", "/Path/to/awful#path" },
130+
new [] { "file:///path/wi[th]/squ[are/brackets/", "/path/wi[th]/squ[are/brackets/" },
131131
new [] { "file:///path%5Cto/file", "/path\\to/file" },
132132
new [] { "file:///Carrots/A%5Ere/Good/", "/Carrots/A^re/Good/" },
133133
new [] { "file:///Users/barnaby/%E8%84%9A%E6%9C%AC/Reduce-Directory", "/Users/barnaby/脚本/Reduce-Directory" },

0 commit comments

Comments
 (0)