Skip to content

Commit f511c51

Browse files
committed
Fix test method name mismatch
1 parent 502cb11 commit f511c51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public void testMinimumEstimation() {
129129
}
130130
}
131131

132-
public void testMinimumEstimationNegativeInfinityHandling() {
132+
public void testMinimumEstimationPositiveInfinityHandling() {
133133
FixedCapacityExponentialHistogram histo = createAutoReleasedHistogram(100);
134134
histo.resetBuckets(0);
135135
histo.tryAddBucket(2000, 1, true);
@@ -143,7 +143,7 @@ public void testMinimumEstimationNegativeInfinityHandling() {
143143
assertThat(estimate.getAsDouble(), equalTo(Double.POSITIVE_INFINITY));
144144
}
145145

146-
public void testMinimumEstimationPositiveInfinityHandling() {
146+
public void testMinimumEstimationNegativeInfinityHandling() {
147147
FixedCapacityExponentialHistogram histo = createAutoReleasedHistogram(100);
148148
histo.resetBuckets(0);
149149
histo.tryAddBucket(2000, 1, false);

0 commit comments

Comments
 (0)