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

Commit 39098e4

Browse files
committed
fix format
1 parent 9d83ed7 commit 39098e4

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/BigtableTableAdminClientTests.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@
9898
import com.google.protobuf.util.Timestamps;
9999
import io.grpc.Status;
100100
import io.grpc.Status.Code;
101-
102101
import java.io.IOException;
103102
import java.util.List;
104103
import java.util.Map;
@@ -1371,7 +1370,8 @@ public void testCreateSchemaBundle() throws IOException {
13711370
.build());
13721371

13731372
CreateSchemaBundleRequest req =
1374-
CreateSchemaBundleRequest.of(TABLE_ID, SCHEMA_BUNDLE_ID).setProtoSchema(TEST_PROTO_SCHEMA_BUNDLE);
1373+
CreateSchemaBundleRequest.of(TABLE_ID, SCHEMA_BUNDLE_ID)
1374+
.setProtoSchema(TEST_PROTO_SCHEMA_BUNDLE);
13751375

13761376
// Execute
13771377
SchemaBundle actualResult = adminClient.createSchemaBundle(req);
@@ -1419,7 +1419,8 @@ public void testUpdateSchemaBundle() throws IOException {
14191419
.build());
14201420

14211421
UpdateSchemaBundleRequest req =
1422-
UpdateSchemaBundleRequest.of(TABLE_ID, SCHEMA_BUNDLE_ID).setProtoSchema(TEST_UPDATED_PROTO_SCHEMA_BUNDLE);
1422+
UpdateSchemaBundleRequest.of(TABLE_ID, SCHEMA_BUNDLE_ID)
1423+
.setProtoSchema(TEST_UPDATED_PROTO_SCHEMA_BUNDLE);
14231424

14241425
// Execute
14251426
SchemaBundle actualResult = adminClient.updateSchemaBundle(req);

0 commit comments

Comments
 (0)