Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
paleolimbot committed Jan 14, 2025
1 parent 2c3642c commit f1d783e
Showing 1 changed file with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

import java.util.List;
import java.util.Map;

import org.apache.sedona.core.enums.IndexType;
import org.apache.spark.api.java.JavaPairRDD;
import org.junit.AfterClass;
Expand Down Expand Up @@ -58,22 +57,26 @@ public void testConstructor() {
spatialRDD.analyze();
assertEquals(inputCount, spatialRDD.approximateTotalCount);
assertEquals(inputBoundary, spatialRDD.boundaryEnvelope);
assert spatialRDD.rawSpatialRDD
assert spatialRDD
.rawSpatialRDD
.take(9)
.get(0)
.getUserData()
.equals("testattribute0\ttestattribute1\ttestattribute2");
assert spatialRDD.rawSpatialRDD
assert spatialRDD
.rawSpatialRDD
.take(9)
.get(2)
.getUserData()
.equals("testattribute0\ttestattribute1\ttestattribute2");
assert spatialRDD.rawSpatialRDD
assert spatialRDD
.rawSpatialRDD
.take(9)
.get(4)
.getUserData()
.equals("testattribute0\ttestattribute1\ttestattribute2");
assert spatialRDD.rawSpatialRDD
assert spatialRDD
.rawSpatialRDD
.take(9)
.get(8)
.getUserData()
Expand Down

0 comments on commit f1d783e

Please sign in to comment.