Skip to content

Commit

Permalink
cloud/storage: restore PutBucketACLRule test.
Browse files Browse the repository at this point in the history
Google Cloud Storage has fixed the issue on the backend.
This fixes issue #147.

Change-Id: I386fe7934b2ddb1f4eaeebc5e767ace3b761c63c
  • Loading branch information
gmlewis committed Aug 31, 2015
1 parent 157e4db commit 43ba5cf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions storage/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ func TestACL(t *testing.T) {
if err := DeleteACLRule(ctx, bucket, name, entity); err != nil {
t.Errorf("Can't delete the ACL rule for the entity: %v", entity)
}
/* TODO(gmlewis): uncomment this section when Cloud Storage Bucket ACL APIs are working again.

if err := PutBucketACLRule(ctx, bucket, "[email protected]", RoleReader); err != nil {
t.Errorf("Error while putting bucket ACL rule: %v", err)
}
Expand All @@ -295,7 +295,6 @@ func TestACL(t *testing.T) {
if err := DeleteBucketACLRule(ctx, bucket, "[email protected]"); err != nil {
t.Errorf("Error while deleting bucket ACL rule: %v", err)
}
*/
}

func cleanup(t *testing.T, prefix string) {
Expand Down

0 comments on commit 43ba5cf

Please sign in to comment.