We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ebbaae commit 37bb1f3Copy full SHA for 37bb1f3
1 file changed
pwsh_module/command.tests.ps1
@@ -71,14 +71,9 @@ Describe "test bolt command syntax" {
71
}
72
73
It "has correct number of parameters" {
74
- $customParams = $command.Parameters.Values | Where-Object {
75
- $_.Name -notin $common
76
- }
77
-
78
- Write-Host "Custom parameters:"
79
- $customParams | ForEach-Object { Write-Host " - $($_.Name)" }
80
81
- ($customParams | Measure-Object).Count | Should -Be 35
+ ($command.Parameters.Values | Where-Object {
+ $_.name -notin $common
+ } | measure-object).Count | Should -Be 35
82
83
84
0 commit comments