Fix Parameter Test

This commit is contained in:
Wes Carroll
2020-04-02 17:43:39 -04:00
parent fbe9fb2af8
commit 285a82f280
+1 -1
View File
@@ -10,7 +10,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
}
$ParameterTestCases = @(
@{ParameterName = 'siteIdentifier'; Type = 'String'; Mandatory = $true; Validation = 'NotNullOrEmpty' }
@{ParameterName = 'siteIdentifier'; Type = 'String[]'; Mandatory = $false; Validation = 'NotNullOrEmpty' }
)
It "<ParameterName> parameter is of <Type> type" -TestCases $ParameterTestCases {