Skip to content

Commit

Permalink
test(e2e/http_ingress): Increase time limit
Browse files Browse the repository at this point in the history
Signed-off-by: nshankar13 <[email protected]>
  • Loading branch information
nshankar13 committed Jul 3, 2021
1 parent cd80a13 commit d146c85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/e2e_http_ingress_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ var _ = OSMDescribe("HTTP ingress",
}
Td.T.Logf("> REST req failed expectedly: %d", status)
return true
}, 5 /*consecutive success threshold*/, 60*time.Second /*timeout*/)
}, 5 /*consecutive success threshold*/, 120*time.Second /*timeout*/)
Expect(cond).To(BeTrue())

ing := &v1beta1.Ingress{
Expand Down Expand Up @@ -169,7 +169,7 @@ var _ = OSMDescribe("HTTP ingress",
}
Td.T.Logf("> REST req succeeded: %d", status)
return true
}, 5 /*consecutive success threshold*/, 60*time.Second /*timeout*/)
}, 5 /*consecutive success threshold*/, 120*time.Second /*timeout*/)
Expect(cond).To(BeTrue())
})
})

0 comments on commit d146c85

Please sign in to comment.