summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Wilcox <crwilcox@google.com>2021-11-05 17:35:01 -0700
committerGitHub <noreply@github.com>2021-11-05 17:35:01 -0700
commit0138b86d100d333a20bc0b0ef74e617e6f3cc7dd (patch)
tree50615426f45c19e4868c4132a07734da457467c6
parentc032f17734fec95d08677b07aaf145a0cc2b95c6 (diff)
downloadgoogle-cloud-go-upstream-master.tar.gz
test(bigtable): fix #4173, increase ctx timeout (#5093)upstream-master
-rw-r--r--bigtable/integration_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bigtable/integration_test.go b/bigtable/integration_test.go
index 36b6cee17..98c4edd82 100644
--- a/bigtable/integration_test.go
+++ b/bigtable/integration_test.go
@@ -1564,7 +1564,7 @@ func TestIntegration_AdminEncryptionInfo(t *testing.T) {
t.Fatalf("NewProdEnv: %v", err)
}
- timeout := 5 * time.Minute
+ timeout := 10 * time.Minute
ctx, cancel := context.WithTimeout(context.Background(), timeout)
defer cancel()