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
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public void testVisitGeoPointsWrapping() {
} else {
// Both positive and negative x values exist, we need to decide which way to wrap the bbox
double unwrappedWidth = maxPosX - minNegX;
double wrappedWidth = (180 - minPosX) - (-180 - maxNegX);
double wrappedWidth = 360.0 + maxNegX - minPosX;
if (unwrappedWidth <= wrappedWidth) {
// The smaller bbox is around the front of the planet, no dateline wrapping required
assertRectangleResult(i + ": " + point, result, minNegX, maxPosX, maxY, minY, false);
Expand Down
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,6 @@ tests:
- class: org.elasticsearch.xpack.esql.plugin.DataNodeRequestSenderIT
method: testSearchWhileRelocating
issue: https://github.com/elastic/elasticsearch/issues/127188
- class: org.elasticsearch.geometry.utils.SpatialEnvelopeVisitorTests
method: testVisitGeoPointsWrapping
issue: https://github.com/elastic/elasticsearch/issues/123425
- class: org.elasticsearch.xpack.remotecluster.CrossClusterEsqlRCS2EnrichUnavailableRemotesIT
method: testEsqlEnrichWithSkipUnavailable
issue: https://github.com/elastic/elasticsearch/issues/127368
Expand Down