This is an automated email from the ASF dual-hosted git repository. imbruced pushed a commit to branch SEDONA-734-fix-relation-parsing in repository https://gitbox.apache.org/repos/asf/sedona.git
commit 2e7fe7fd2e9f6641a65337b2e14693a51eba2896 Author: pawelkocinski <[email protected]> AuthorDate: Wed May 21 00:01:17 2025 +0200 SEDONA-734 fix osm relation parsing --- .../common/src/test/scala/org/apache/sedona/sql/OsmReaderTest.scala | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/spark/common/src/test/scala/org/apache/sedona/sql/OsmReaderTest.scala b/spark/common/src/test/scala/org/apache/sedona/sql/OsmReaderTest.scala index bdcbd1767a..6bedc8f97a 100644 --- a/spark/common/src/test/scala/org/apache/sedona/sql/OsmReaderTest.scala +++ b/spark/common/src/test/scala/org/apache/sedona/sql/OsmReaderTest.scala @@ -200,9 +200,8 @@ class OsmReaderTest extends TestBaseScala with Matchers { .collect() .head - val expectedRelationsList = Seq( - "252356770", "503642591", "4939150452", "1373711177", "4939150459", "503642592" - ) + val expectedRelationsList = + Seq("252356770", "503642591", "4939150452", "1373711177", "4939150459", "503642592") relationsList.length shouldEqual (expectedRelationsList.length) relationsList should contain theSameElementsAs expectedRelationsList
