Skip to content

Commit

Permalink
test: fix TestContinueOnFailDag (argoproj#3101)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmanucharyan committed May 25, 2020
1 parent fa69c1b commit e4e0dfb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/e2e/functional_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ spec:
}

func (s *FunctionalSuite) TestContinueOnFailDag() {
// https://github.com/argoproj/argo/issues/2624
s.T().SkipNow()
s.Given().
Workflow(`
apiVersion: argoproj.io/v1alpha1
Expand Down Expand Up @@ -149,7 +147,7 @@ spec:
WaitForWorkflow(30 * time.Second).
Then().
ExpectWorkflow(func(t *testing.T, _ *metav1.ObjectMeta, status *wfv1.WorkflowStatus) {
assert.Equal(t, wfv1.NodeFailed, status.Phase)
assert.Equal(t, wfv1.NodeSucceeded, status.Phase)
assert.Len(t, status.Nodes, 6)

bStatus := status.Nodes.FindByDisplayName("B")
Expand Down

0 comments on commit e4e0dfb

Please sign in to comment.