Skip to content

Commit

Permalink
test(storage): skip a consistently failing test (#7189)
Browse files Browse the repository at this point in the history
The gRPC variant of this test always fails.

Updates: #7033
  • Loading branch information
codyoss committed Dec 27, 2022
1 parent e039e2b commit ca3c0b3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions storage/integration_test.go
Expand Up @@ -1082,6 +1082,9 @@ func TestIntegration_MultiMessageWriteGRPC(t *testing.T) {

func TestIntegration_MultiChunkWrite(t *testing.T) {
multiTransportTest(context.Background(), t, func(t *testing.T, ctx context.Context, bucket string, _ string, client *Client) {
if bucket == grpcBucketName {
t.Skip("https://github.com/googleapis/google-cloud-go/issues/7033")
}
h := testHelper{t}
obj := client.Bucket(bucket).Object(uidSpace.New()).Retryer(WithPolicy(RetryAlways))
defer h.mustDeleteObject(obj)
Expand Down

0 comments on commit ca3c0b3

Please sign in to comment.