Skip to content

Commit 698ea95

Browse files
committed
fix typo
1 parent e483bfc commit 698ea95

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1447,11 +1447,11 @@ public void testReadCompressedBlob() throws IOException {
14471447
@Test
14481448
public void testBlobNameNormalization() {
14491449
for (String blobName : BLOB_NORMALIZATION.keySet()) {
1450-
BlobInfo blobInfoFormC = BlobInfo.newBuilder(BlobId.of(BUCKET, blobName))
1450+
BlobInfo blobInfo = BlobInfo.newBuilder(BlobId.of(BUCKET, blobName))
14511451
.setContentType("text/plain")
14521452
.setContentEncoding("UTF-8")
14531453
.build();
1454-
Blob blob = storage.create(blobInfoFormC, BLOB_NORMALIZATION.get(blobName).getBytes());
1454+
Blob blob = storage.create(blobInfo, BLOB_NORMALIZATION.get(blobName).getBytes());
14551455
assertEquals(blobName, blob.getName());
14561456

14571457
String content = new String(storage.get(BlobId.of(BUCKET, blobName)).getContent());

0 commit comments

Comments
 (0)