From 84ff47689813cfdbd632310eee6f6bd3732bb338 Mon Sep 17 00:00:00 2001 From: Brenna N Epp Date: Mon, 27 Sep 2021 14:48:39 -0500 Subject: [PATCH] test(storage): skip "unspecified" PAP tests (#4894) Fixes #4817 while changes for #4890 are merged in --- storage/integration_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/storage/integration_test.go b/storage/integration_test.go index 0b90c7dee64..f90f15322e3 100644 --- a/storage/integration_test.go +++ b/storage/integration_test.go @@ -639,6 +639,7 @@ func TestIntegration_PublicAccessPrevention(t *testing.T) { if err := a.Set(ctx, AllUsers, RoleReader); err == nil { t.Error("ACL.Set: expected adding AllUsers ACL to object should fail") } + t.Skip("https://github.com/googleapis/google-cloud-go/issues/4890") // Update PAP setting to unspecified should work and not affect UBLA setting. attrs, err := bkt.Update(ctx, BucketAttrsToUpdate{PublicAccessPrevention: PublicAccessPreventionUnspecified})