From e15f11201b0aa260ec60952e4d71c95ee2f0847f Mon Sep 17 00:00:00 2001 From: Alvaro Viebrantz Date: Thu, 29 Sep 2022 13:36:11 -0700 Subject: [PATCH] test(bigquery): typo on bq connection auth scopes (#6780) --- bigquery/integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigquery/integration_test.go b/bigquery/integration_test.go index 2d2fcbe5394..bba35836466 100644 --- a/bigquery/integration_test.go +++ b/bigquery/integration_test.go @@ -197,7 +197,7 @@ func initIntegrationTest() func() { bqOpts = append(bqOpts, grpcHeadersChecker.CallOptions()...) sOpts = append(sOpts, grpcHeadersChecker.CallOptions()...) ptmOpts = append(ptmOpts, grpcHeadersChecker.CallOptions()...) - connOpts = append(sOpts, grpcHeadersChecker.CallOptions()...) + connOpts = append(connOpts, grpcHeadersChecker.CallOptions()...) } var err error client, err = NewClient(ctx, projID, bqOpts...)