Skip to content

Commit 184835f

Browse files
PoshAJPoshAJ
PoshAJ
authored and
PoshAJ
committed
Update Tests for Consistency
1 parent e35bec6 commit 184835f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/Rules/AvoidAssignmentToAutomaticVariable.tests.ps1

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Describe "AvoidAssignmentToAutomaticVariables" {
6565
It "Variable <VariableName> produces warning of Severity <ExpectedSeverity>" -TestCases $testCases_AutomaticVariables {
6666
param ($VariableName, $ExpectedSeverity)
6767

68-
$warnings = Invoke-ScriptAnalyzer -ScriptDefinition "`$${VariableName} = 'foo'" -ExcludeRule PSUseDeclaredVarsMoreThanAssignments
68+
[System.Array] $warnings = Invoke-ScriptAnalyzer -ScriptDefinition "`$${VariableName} = 'foo'" -ExcludeRule PSUseDeclaredVarsMoreThanAssignments
6969
$warnings.Count | Should -Be 1
7070
$warnings.Severity | Should -Be $ExpectedSeverity
7171
$warnings.RuleName | Should -Be $ruleName
@@ -80,7 +80,7 @@ Describe "AvoidAssignmentToAutomaticVariables" {
8080
$warnings.RuleName | Should -Be $ruleName
8181
}
8282

83-
It "Using Variable <VariableName> as parameter name produces warning of Severity error" -TestCases $testCases_AutomaticVariables {
83+
It "Using Variable <VariableName> as parameter name produces warning of Severity <ExpectedSeverity>" -TestCases $testCases_AutomaticVariables {
8484
param ($VariableName, $ExpectedSeverity)
8585

8686
[System.Array] $warnings = Invoke-ScriptAnalyzer -ScriptDefinition "function foo{Param(`$$VariableName)}" -ExcludeRule PSReviewUnusedParameter
@@ -89,7 +89,7 @@ Describe "AvoidAssignmentToAutomaticVariables" {
8989
$warnings.RuleName | Should -Be $ruleName
9090
}
9191

92-
It "Using Variable <VariableName> as parameter name in param block produces warning of Severity error" -TestCases $testCases_AutomaticVariables {
92+
It "Using Variable <VariableName> as parameter name in param block produces warning of Severity <ExpectedSeverity>" -TestCases $testCases_AutomaticVariables {
9393
param ($VariableName, $ExpectedSeverity)
9494

9595
[System.Array] $warnings = Invoke-ScriptAnalyzer -ScriptDefinition "function foo(`$$VariableName){}"

0 commit comments

Comments
 (0)