From df11d95663a9bded744a31f8c2b91889cebd52cf Mon Sep 17 00:00:00 2001 From: Brenna N Epp Date: Thu, 17 Nov 2022 02:26:02 +0000 Subject: [PATCH] test(storage): fix flaky grpc tests (#7057) Fixes #6910, #6963, #6859 --- storage/integration_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/storage/integration_test.go b/storage/integration_test.go index 2b0c7b96691..1641db28a96 100644 --- a/storage/integration_test.go +++ b/storage/integration_test.go @@ -610,7 +610,7 @@ func TestIntegration_BucketUpdate(t *testing.T) { } func TestIntegration_BucketPolicyOnly(t *testing.T) { - multiTransportTest(context.Background(), t, func(t *testing.T, ctx context.Context, _ string, prefix string, client *Client) { + multiTransportTest(skipGRPC("pending b/257354385 - add error to retry & add read mask to get object"), t, func(t *testing.T, ctx context.Context, _ string, prefix string, client *Client) { h := testHelper{t} bkt := client.Bucket(prefix + uidSpace.New()) @@ -692,7 +692,7 @@ func TestIntegration_BucketPolicyOnly(t *testing.T) { } func TestIntegration_UniformBucketLevelAccess(t *testing.T) { - multiTransportTest(context.Background(), t, func(t *testing.T, ctx context.Context, _ string, prefix string, client *Client) { + multiTransportTest(skipGRPC("pending b/257354385 - add error to retry & add read mask to get object"), t, func(t *testing.T, ctx context.Context, _ string, prefix string, client *Client) { h := testHelper{t} bkt := client.Bucket(prefix + uidSpace.New()) h.mustCreate(bkt, testutil.ProjID(), nil) @@ -4062,7 +4062,7 @@ func TestIntegration_ReaderCancel(t *testing.T) { bkt := client.Bucket(bucket) obj := bkt.Object("reader-cancel-obj") - minObjectSize := 2500000 // 2.5 Mb + minObjectSize := 5000000 // 5 Mb w := obj.NewWriter(ctx) c := randomContents()