We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3603c1d commit 7e3322eCopy full SHA for 7e3322e
google-cloud-spanner/src/test/java/com/google/cloud/spanner/InstanceAdminClientImplTest.java
@@ -280,7 +280,11 @@ public void createInstance() throws Exception {
280
when(rpc.createInstance(
281
"projects/" + PROJECT_ID,
282
INSTANCE_ID,
283
- getInstanceProto().toBuilder().setProcessingUnits(0).setEdition(com.google.spanner.admin.instance.v1.Instance.Edition.ENTERPRISE_PLUS).build()))
+ getInstanceProto()
284
+ .toBuilder()
285
+ .setProcessingUnits(0)
286
+ .setEdition(com.google.spanner.admin.instance.v1.Instance.Edition.ENTERPRISE_PLUS)
287
+ .build()))
288
.thenReturn(rawOperationFuture);
289
OperationFuture<Instance, CreateInstanceMetadata> op =
290
client.createInstance(
0 commit comments