Skip to content

Commit

Permalink
spotless apply
Browse files Browse the repository at this point in the history
Signed-off-by: acarbonetto <[email protected]>
  • Loading branch information
acarbonetto committed Oct 11, 2023
1 parent b3284c1 commit 8f1dfa5
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,11 @@ public static void testClientSetGet(
// print TPS
if (config.resultsFile.isPresent()) {
try {
config.resultsFile.get().append(
"Avg. time in ms: " + (after - before) / iterations / LATENCY_NORMALIZATION);
config
.resultsFile
.get()
.append(
"Avg. time in ms: " + (after - before) / iterations / LATENCY_NORMALIZATION);
} catch (IOException ignored) {
}
} else {
Expand Down

0 comments on commit 8f1dfa5

Please sign in to comment.