Skip to content

Commit

Permalink
chore: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
olavloite authored and thiagotnunes committed May 6, 2021
1 parent aa699cb commit 6746435
Showing 1 changed file with 4 additions and 6 deletions.
Expand Up @@ -207,13 +207,11 @@ public void createInstanceWithProcessingUnits_shouldReturnNumberOfProcessingUnit
String instanceId = SpannerSampleIT.formatForTest("inst-pu");

try {
String out =
runExample(() -> CreateInstanceWithProcessingUnitsExample.createInstance(projectId, instanceId));
String out = runExample(
() -> CreateInstanceWithProcessingUnitsExample.createInstance(projectId, instanceId));
assertThat(out)
.contains(
String.format(
"Instance %s was successfully created with %d processing units",
InstanceId.of(projectId, instanceId), 200));
.contains(String.format("Instance %s was successfully created with %d processing units",
InstanceId.of(projectId, instanceId), 200));
} finally {
spanner.getInstanceAdminClient().deleteInstance(instanceId);
}
Expand Down

0 comments on commit 6746435

Please sign in to comment.