Skip to content

Commit bc4343b

Browse files
author
Maddie Clayton
authored
Merge pull request Azure#8552 from refortie/fix-workflow-paging-bug
[LogicApp] Fix paging bug for GetWorkflows
2 parents e1b12e9 + bd8d4c9 commit bc4343b

File tree

4 files changed

+2822
-119
lines changed

4 files changed

+2822
-119
lines changed

src/LogicApp/LogicApp.Test/ScenarioTests/WorkflowTests.ps1

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,9 @@ function Test-CreateAndGetLogicAppUsingDefinitionWithActions
199199
Assert-True { $workflow5.Length -ge 1 }
200200

201201
# Test 6: Get workflow with just name parameter
202-
# refortie (1/31/19): TODO Test is disabled for now, we only return the first page on get logic app by subscription
203-
# $workflow6 = Get-AzLogicApp -Name $workflowName
204-
# Assert-NotNull $workflow6
205-
# Assert-True { $workflow6.Length -ge 1 }
202+
$workflow6 = Get-AzLogicApp -Name $workflowName
203+
Assert-NotNull $workflow6
204+
Assert-True { $workflow6.Length -ge 1 }
206205

207206
# Test 7: Get non-existing logic app using get cmdlet
208207
try

0 commit comments

Comments
 (0)