Provisioning: Increase timeout for flaky CreateGithubRepository integration test (#107091)

Increase timeout CreateGithubRepository test
pull/107029/head
Roberto Jiménez Sánchez 4 days ago committed by GitHub
parent 6e5056e1be
commit 9a95430815
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      pkg/tests/apis/provisioning/provisioning_test.go

@ -289,7 +289,7 @@ func TestIntegrationProvisioning_CreatingGitHubRepository(t *testing.T) {
found, err := helper.DashboardsV1.Resource.List(ctx, metav1.ListOptions{}) found, err := helper.DashboardsV1.Resource.List(ctx, metav1.ListOptions{})
assert.NoError(t, err, "can list values") assert.NoError(t, err, "can list values")
assert.Equal(collect, 0, len(found.Items), "expected dashboards to be deleted") assert.Equal(collect, 0, len(found.Items), "expected dashboards to be deleted")
}, time.Second*10, time.Millisecond*10, "Expected dashboards to be deleted") }, time.Second*20, time.Millisecond*10, "Expected dashboards to be deleted")
t.Run("github url cleanup", func(t *testing.T) { t.Run("github url cleanup", func(t *testing.T) {
tests := []struct { tests := []struct {

Loading…
Cancel
Save