Skip to content

Commit 40b25ed

Browse files
committed
I thought I fixed all these...
1 parent f5abbb8 commit 40b25ed

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

test/PowerShellEditorServices.Test.Shared/Refactoring/Functions/FunctionSameName.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function SameNameFunction {
2-
Write-Host "This is the outer function"
2+
Write-Host 'This is the outer function'
33
function SameNameFunction {
4-
Write-Host "This is the inner function"
4+
Write-Host 'This is the inner function'
55
}
66
SameNameFunction
77
}

test/PowerShellEditorServices.Test.Shared/Refactoring/Functions/FunctionSameNameRenamed.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
function SameNameFunction {
2-
Write-Host "This is the outer function"
2+
Write-Host 'This is the outer function'
33
function Renamed {
44
Write-Host 'This is the inner function'
55
}

0 commit comments

Comments
 (0)