Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,6 @@ tests:
- class: org.elasticsearch.multiproject.test.CoreWithMultipleProjectsClientYamlTestSuiteIT
method: test {yaml=search.vectors/41_knn_search_byte_quantized/kNN search plus query}
issue: https://github.com/elastic/elasticsearch/issues/124687
- class: org.elasticsearch.common.metrics.ExponentiallyWeightedMovingRateTests
method: testEwmr_threadSafe
issue: https://github.com/elastic/elasticsearch/issues/124692
- class: org.elasticsearch.packaging.test.BootstrapCheckTests
method: test20RunWithBootstrapChecks
issue: https://github.com/elastic/elasticsearch/issues/124940
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

public class ExponentiallyWeightedMovingRateTests extends ESTestCase {

private static final double TOLERANCE = 1.0e-13;
private static final double TOLERANCE = 2.0e-13;
private static final double HALF_LIFE_MILLIS = 1.0e6; // Half-life of used by many tests
private static final double LAMBDA = Math.log(2.0) / HALF_LIFE_MILLIS; // Equivalent value of lambda
public static final int START_TIME_IN_MILLIS = 1234567;
Expand Down