Skip to content

Commit cdd36db

Browse files
committed
test: increase timeout
On-behalf-of: SAP <[email protected]> Signed-off-by: Simon Bein <[email protected]>
1 parent 97da797 commit cdd36db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/utils/wait.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func WaitForObject(t *testing.T, ctx context.Context, client ctrlruntimeclient.C
7171
t.Helper()
7272
t.Logf("Waiting for %T to be available…", obj)
7373

74-
err := wait.PollUntilContextTimeout(ctx, 500*time.Millisecond, 3*time.Minute, false, func(ctx context.Context) (done bool, err error) {
74+
err := wait.PollUntilContextTimeout(ctx, 500*time.Millisecond, 10*time.Minute, false, func(ctx context.Context) (done bool, err error) {
7575
err = client.Get(ctx, key, obj)
7676
return err == nil, nil
7777
})

0 commit comments

Comments
 (0)