Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
RussellLuo committed Jun 11, 2024
1 parent 81eb2f3 commit 62a45a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builtin/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ func NewWait(name string) *WaitBuilder {
return &WaitBuilder{task: task}
}

func (b *WaitBuilder) Out(out map[string]any) *WaitBuilder {
b.task.Input.Output = orchestrator.Expr[map[string]any]{Expr: out}
func (b *WaitBuilder) Output(output map[string]any) *WaitBuilder {
b.task.Input.Output = orchestrator.Expr[map[string]any]{Expr: output}
return b
}

Expand Down

0 comments on commit 62a45a2

Please sign in to comment.