Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit d59ee75

Browse files
committed
fix lint
1 parent 7529c2c commit d59ee75

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1083,9 +1083,7 @@ public static void beforeClass() throws InterruptedException, IOException {
10831083
BlobInfo.newBuilder(BUCKET, LOAD_FILE).setContentType("text/plain").build(),
10841084
CSV_CONTENT.getBytes(StandardCharsets.UTF_8));
10851085
storage.create(
1086-
BlobInfo.newBuilder(BUCKET, LOAD_FILE_NULL)
1087-
.setContentType("text/plain")
1088-
.build(),
1086+
BlobInfo.newBuilder(BUCKET, LOAD_FILE_NULL).setContentType("text/plain").build(),
10891087
CSV_CONTENT_NULL.getBytes(StandardCharsets.UTF_8));
10901088
storage.create(
10911089
BlobInfo.newBuilder(BUCKET, LOAD_FILE_FLEXIBLE_COLUMN_NAME)
@@ -6633,8 +6631,7 @@ public void testWriteChannelPreserveAsciiControlCharacters()
66336631
}
66346632

66356633
@Test
6636-
public void testLoadJobPreserveAsciiControlCharacters()
6637-
throws InterruptedException {
6634+
public void testLoadJobPreserveAsciiControlCharacters() throws InterruptedException {
66386635
String destinationTableName = "test_load_job_preserve_ascii_control_characters";
66396636
TableId destinationTable = TableId.of(DATASET, destinationTableName);
66406637

0 commit comments

Comments
 (0)