Skip to content

Commit

Permalink
test(modelql): increased threshold for performance test
Browse files Browse the repository at this point in the history
Otherwise, it's too unstable and fails the build.
  • Loading branch information
slisson committed Aug 30, 2023
1 parent ac99f5b commit c7f02cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class PerformanceTests {
val query = buildMonoQuery<Int, Int> { it.filter { it.equalTo(0) } }
val intRange = 1..100000

compareBenchmark(100, 10.0, {
compareBenchmark(100, 20.0, {
query.asSequence(QueryEvaluationContext.EMPTY, intRange.asSequence()).count()
}, {
intRange.asSequence().filter { it == 0 }.count()
Expand Down

0 comments on commit c7f02cf

Please sign in to comment.