Skip to content

Commit 9e05678

Browse files
committed
I thought I fixed all these...
1 parent ff75355 commit 9e05678

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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)