Skip to content

Commit

Permalink
Avoid overly-long bucket names in integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jskeet committed Jan 6, 2020
1 parent 32f8a22 commit 0e0e029
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public StorageClassTest(StorageFixture fixture)
[InlineData(StorageClasses.Standard)]
public void CreateBucketWithStorageClass(string storageClass)
{
string bucketName = $"{_fixture.BucketPrefix}-with-class-{storageClass.ToLowerInvariant()}";
string bucketName = $"{_fixture.BucketPrefix}-class-{storageClass.ToLowerInvariant()}";
var client = _fixture.Client;

var bucket = client.CreateBucket(_fixture.ProjectId, new Bucket { Name = bucketName, StorageClass = storageClass });
Expand Down

0 comments on commit 0e0e029

Please sign in to comment.