Skip to content
This repository was archived by the owner on Jul 11, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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())
})
})