Skip to content

Commit

Permalink
feat(executor): Remove need for watch
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Collins <[email protected]>
  • Loading branch information
alexec committed Feb 10, 2021
1 parent 2c87588 commit ca47612
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/e2e/signals_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ func (s *SignalsSuite) SetupSuite() {
}

func (s *SignalsSuite) TestStopBehavior() {
s.Need(fixtures.None(fixtures.PNS)) // does not work on PNS on CI for some reason
s.Given().
Workflow("@functional/stop-terminate.yaml").
When().
Expand Down Expand Up @@ -67,7 +66,7 @@ func (s *SignalsSuite) TestTerminateBehavior() {
assert.NoError(t, err)
assert.Regexp(t, "workflow stop-terminate-.* terminated", output)
}).
WaitForWorkflow().
WaitForWorkflow(time.Minute).
Then().
ExpectWorkflow(func(t *testing.T, m *metav1.ObjectMeta, status *wfv1.WorkflowStatus) {
assert.Contains(t, []wfv1.WorkflowPhase{wfv1.WorkflowFailed, wfv1.WorkflowError}, status.Phase)
Expand Down

0 comments on commit ca47612

Please sign in to comment.