test: increased wait period (#2356)

Increased wait period for Gitlab settings change to kick in.

Signed-off-by: Matej Vašek <mvasek@redhat.com>
This commit is contained in:
Matej Vašek 2024-06-12 13:14:28 +02:00 committed by GitHub
parent 75ee35a728
commit d6b1822543
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ func setupGitlabEnv(ctx context.Context, t *testing.T, baseURL, username, passwo
// For some reason the setting update does not kick in immediately.
select {
case <-time.After(time.Second * 30):
case <-time.After(time.Second * 60):
break
case <-ctx.Done():
t.Fatal(ctx.Err())