Skip to content

Commit 2239181

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent aa22fd2 commit 2239181

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

libs/exponential-histogram/src/test/java/org/elasticsearch/exponentialhistogram/QuantileAccuracyTests.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,7 @@ public void testNoNegativeZeroReturned() {
6565

6666
public void testPercentilesClampedToMinMax() {
6767
ExponentialHistogram histogram = createAutoReleasedHistogram(
68-
b -> b
69-
.scale(0)
70-
.setNegativeBucket(1, 1)
71-
.setPositiveBucket(1, 1)
72-
.max(0.00001)
73-
.min(-0.00002)
68+
b -> b.scale(0).setNegativeBucket(1, 1).setPositiveBucket(1, 1).max(0.00001).min(-0.00002)
7469
);
7570
double p01 = ExponentialHistogramQuantile.getQuantile(histogram, 0.01);
7671
double p99 = ExponentialHistogramQuantile.getQuantile(histogram, 0.99);

0 commit comments

Comments
 (0)