Skip to content

Commit

Permalink
fix constructor to adjust for chained alert trigger change in common …
Browse files Browse the repository at this point in the history
…utils

Signed-off-by: Surya Sashank Nistala <[email protected]>
  • Loading branch information
eirsep committed Jun 20, 2023
1 parent 8acaf36 commit 316b99c
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,8 @@ fun randomWorkflow(
user = user,
inputs = listOf(CompositeInput(Sequence(delegates))),
version = -1L,
schemaVersion = 0
schemaVersion = 0,
triggers = listOf()
)
}

Expand All @@ -278,7 +279,8 @@ fun randomWorkflowWithDelegates(
user = user,
inputs = listOf(CompositeInput(Sequence(delegates))),
version = -1L,
schemaVersion = 0
schemaVersion = 0,
triggers = emptyList()
)
}

Expand Down

0 comments on commit 316b99c

Please sign in to comment.