Skip to content

Commit 7e3322e

Browse files
chore: generate libraries at Thu Oct 3 05:32:52 UTC 2024
1 parent 3603c1d commit 7e3322e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

google-cloud-spanner/src/test/java/com/google/cloud/spanner/InstanceAdminClientImplTest.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,11 @@ public void createInstance() throws Exception {
280280
when(rpc.createInstance(
281281
"projects/" + PROJECT_ID,
282282
INSTANCE_ID,
283-
getInstanceProto().toBuilder().setProcessingUnits(0).setEdition(com.google.spanner.admin.instance.v1.Instance.Edition.ENTERPRISE_PLUS).build()))
283+
getInstanceProto()
284+
.toBuilder()
285+
.setProcessingUnits(0)
286+
.setEdition(com.google.spanner.admin.instance.v1.Instance.Edition.ENTERPRISE_PLUS)
287+
.build()))
284288
.thenReturn(rawOperationFuture);
285289
OperationFuture<Instance, CreateInstanceMetadata> op =
286290
client.createInstance(

0 commit comments

Comments
 (0)