Skip to content

Commit cd6d33c

Browse files
author
Paulo Gomes
committed
Increase gingko timeout to 60s
Signed-off-by: Paulo Gomes <[email protected]>
1 parent d8da814 commit cd6d33c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

controllers/suite_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ var exampleCA []byte
5656
var ctx context.Context
5757
var cancel context.CancelFunc
5858

59-
const timeout = time.Second * 30
59+
const timeout = time.Second * 60
6060

6161
func TestAPIs(t *testing.T) {
6262
RegisterFailHandler(Fail)
@@ -161,7 +161,7 @@ var _ = BeforeSuite(func() {
161161
Expect(k8sClient).ToNot(BeNil())
162162

163163
Eventually(done, timeout).Should(BeClosed())
164-
}, 60)
164+
}, timeout.Seconds())
165165

166166
var _ = AfterSuite(func() {
167167
cancel()

0 commit comments

Comments
 (0)