Unwrap single string interpolation syntax

This commit is contained in:
Matthew de Detrich 2023-05-22 20:47:29 +02:00
parent dc216add10
commit 480f516398
No known key found for this signature in database
GPG key ID: 196CBC8FEAA4CC64
94 changed files with 276 additions and 276 deletions

View file

@ -37,7 +37,7 @@ object BenchRunner {
result.getParams.getParamsKeys.asScala.map(key => s"$key=${result.getParams.getParam(key)}").mkString("_")
val score = result.getAggregatedResult.getPrimaryResult.getScore.round
val unit = result.getAggregatedResult.getPrimaryResult.getScoreUnit
s"\t${bench}_${params}\t$score\t$unit"
s"\t${bench}_$params\t$score\t$unit"
}
report.toList.sorted.foreach(println)

View file

@ -79,7 +79,7 @@ class SerializationFormatCacheBenchmark {
Promise(),
"Any",
// request path is encoded in this string
s"_user_region_shard${n % 100}_entitypretendid${n}"))
s"_user_region_shard${n % 100}_entitypretendid$n"))
topLevelActorRefs = Array.tabulate(uniqueTopLevelRefs)(n => system.actorOf(Props.empty, s"actor_$n"))
}