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:
240240- class : org.elasticsearch.xpack.restart.MLModelDeploymentFullClusterRestartIT
241241 method : testDeploymentSurvivesRestart {cluster=OLD}
242242 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
246243- class : org.elasticsearch.multiproject.test.CoreWithMultipleProjectsClientYamlTestSuiteIT
247244 method : test {yaml=search.vectors/41_knn_search_byte_quantized/kNN search plus query}
248245 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) {
429429 double delta = (value > 1e28 || value < -1e28 ) ? Math .abs (value / 1e6 )
430430 : (value > 1e20 || value < -1e20 ) ? Math .abs (value / 1e10 )
431431 : (value > 1e8 || value < -1e8 ) ? Math .abs (value / 1e15 )
432+ : (value > 1e5 || value < -1e5 ) ? DELTA * 10
432433 : DELTA ;
433434 return closeTo (value , delta );
434435 }
You can’t perform that action at this time.
0 commit comments