File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
server/src/test/java/org/elasticsearch/lucene/spatial Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -240,9 +240,6 @@ tests:
240
240
- class : org.elasticsearch.xpack.restart.MLModelDeploymentFullClusterRestartIT
241
241
method : testDeploymentSurvivesRestart {cluster=OLD}
242
242
issue : https://github.com/elastic/elasticsearch/issues/124160
243
- - class : org.elasticsearch.lucene.spatial.CartesianCentroidCalculatorTests
244
- method : testAddDifferentDimensionalType
245
- issue : https://github.com/elastic/elasticsearch/issues/124609
246
243
- class : org.elasticsearch.multiproject.test.CoreWithMultipleProjectsClientYamlTestSuiteIT
247
244
method : test {yaml=search.vectors/41_knn_search_byte_quantized/kNN search plus query}
248
245
issue : https://github.com/elastic/elasticsearch/issues/124687
Original file line number Diff line number Diff line change @@ -429,6 +429,7 @@ private Matcher<Double> matchDouble(double value) {
429
429
double delta = (value > 1e28 || value < -1e28 ) ? Math .abs (value / 1e6 )
430
430
: (value > 1e20 || value < -1e20 ) ? Math .abs (value / 1e10 )
431
431
: (value > 1e8 || value < -1e8 ) ? Math .abs (value / 1e15 )
432
+ : (value > 1e5 || value < -1e5 ) ? DELTA * 10
432
433
: DELTA ;
433
434
return closeTo (value , delta );
434
435
}
You can’t perform that action at this time.
0 commit comments