Improve var name consistency in BindingBenchmark

This commit is contained in:
Michael Bull 2020-05-11 12:01:32 +01:00
parent 4b745d8717
commit 534815400c
1 changed files with 8 additions and 10 deletions

View File

@ -39,10 +39,9 @@ class BindingBenchmark {
@Benchmark @Benchmark
fun andThenSuccess(blackhole: Blackhole) { fun andThenSuccess(blackhole: Blackhole) {
val result = val result = provideX().andThen { x ->
provideX().andThen { first -> provideY().andThen { y ->
provideY().andThen { second -> Ok(x + y)
Ok(first + second)
} }
} }
@ -51,10 +50,9 @@ class BindingBenchmark {
@Benchmark @Benchmark
fun andThenFailure(blackhole: Blackhole) { fun andThenFailure(blackhole: Blackhole) {
val result = val result = provideX().andThen { x ->
provideX().andThen { first -> provideZ().andThen { z ->
provideZ().andThen { second -> Ok(x + z)
Ok(first + second)
} }
} }