Skip to content

Commit 697a60c

Browse files
author
Quoc Truong
committed
Fix test failure
1 parent f1e261c commit 697a60c

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

Tests/Rules/AvoidUsingReservedCharNames.ps1

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@
2727
}
2828
}
2929

30-
function O {
30+
function O
31+
{
32+
[CmdletBinding()]
33+
[Alias()]
34+
[OutputType([int])]
35+
Param()
36+
3137
Write-Output "I use one char"
32-
}
38+
}
39+
40+
Export-ModuleMember Use-#Reserved
41+
Export-ModuleMember O

0 commit comments

Comments
 (0)