Skip to content

Commit

Permalink
test(storage): skip 2 more tests for gRPC
Browse files Browse the repository at this point in the history
These are also doing bucket updates and I missed them in googleapis#7476.

Updates googleapis#7483
Updates googleapis#7484
  • Loading branch information
tritone committed Feb 24, 2023
1 parent 14771b1 commit 61ebca0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storage/integration_test.go
Expand Up @@ -2719,7 +2719,7 @@ func TestIntegration_BucketIAM(t *testing.T) {
// a. The project that owns the requester-pays bucket (same as (2))
// b. Another project (the Firestore project).
func TestIntegration_RequesterPaysOwner(t *testing.T) {
multiTransportTest(context.Background(), t, func(t *testing.T, ctx context.Context, _, prefix string, client *Client) {
multiTransportTest(skipGRPC("b/270215524"), t, func(t *testing.T, ctx context.Context, _, prefix string, client *Client) {
jwt, err := testutil.JWTConfig()
if err != nil {
t.Fatalf("testutil.JWTConfig: %v", err)
Expand Down Expand Up @@ -2934,7 +2934,7 @@ func TestIntegration_RequesterPaysNonOwner(t *testing.T) {
t.Fatalf("need a second account (env var %s)", envFirestorePrivateKey)
}

multiTransportTest(ctx, t, func(t *testing.T, ctx context.Context, _, prefix string, client *Client) {
multiTransportTest(skipGRPC("b/270215524"), t, func(t *testing.T, ctx context.Context, _, prefix string, client *Client) {
client.SetRetry(WithPolicy(RetryAlways))

for _, test := range []struct {
Expand Down

0 comments on commit 61ebca0

Please sign in to comment.