Skip to content

Commit d317037

Browse files
committed
Get-FabricLongRunningOperation must be excluded from "Guid for Id" param tests
1 parent 6b40cab commit d317037

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/QA/module.tests.ps1

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,11 @@ Describe 'Help for module' -Tags 'helpQuality' {
229229
}
230230

231231
Describe "datatypes for functions" -Tag "ParameterTypes" {
232-
$tests = $allModuleFunctions | ForEach-Object {
232+
$tests = $allModuleFunctions | Where-Object -FilterScript {
233+
$_.Name -notin (
234+
'Get-FabricLongRunningOperation'
235+
)
236+
} | ForEach-Object {
233237
[PSCustomObject]@{
234238
FunctionName = $_.Name
235239
Parameters = @(

0 commit comments

Comments
 (0)