Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed Nov 20, 2024
1 parent 5a086dd commit 0752f71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/e2e/test_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ func SetupCDCFlowStatusQuery(t *testing.T, env WorkflowRun, config *protos.FlowC
var status protos.FlowStatus
if err := response.Get(&status); err != nil {
t.Fatal(err)
} else if status == protos.FlowStatus_STATUS_RUNNING {
} else if status == protos.FlowStatus_STATUS_RUNNING || status == protos.FlowStatus_STATUS_COMPLETED {
return
} else if counter > 30 {
env.Cancel()
Expand Down

0 comments on commit 0752f71

Please sign in to comment.