Skip to content

Commit a8f7d2d

Browse files
author
Robert Holt
committed
[Ignore] Fix test typos
1 parent f86edb3 commit a8f7d2d

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.9.1'
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
@@ -368,7 +368,6 @@ public async Task<FindReferencesResult> FindReferencesOfSymbol(
368368
foreach (object fileName in fileMap.Keys)
369369
{
370370
var file = (ScriptFile)fileMap[fileName];
371-
IEnumerable<SymbolReference> symbolReferencesinFile;
372371
await _aliasHandle.WaitAsync();
373372
try
374373
{

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)