Skip to content

Commit

Permalink
test(compute): longer timeout for flaky test (#5784)
Browse files Browse the repository at this point in the history
Fixes: #4741
  • Loading branch information
codyoss committed Mar 23, 2022
1 parent b01c037 commit 046e213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compute/apiv1/smoke_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ func TestCapitalLetter(t *testing.T) {
t.Fatal(err)
}
defer func() {
timeoutCtx, cancel := context.WithTimeout(ctx, time.Minute)
timeoutCtx, cancel := context.WithTimeout(ctx, 5*time.Minute)
defer cancel()
err = internal.Retry(timeoutCtx, gax.Backoff{}, func() (stop bool, err error) {
_, err = c.Delete(timeoutCtx,
Expand Down

0 comments on commit 046e213

Please sign in to comment.