Skip to content

Commit

Permalink
[DOCS] Fix spelling in Java and Scala test files (#1613)
Browse files Browse the repository at this point in the history
* [DOCS] Fix spelling in Java Test file

* Fix more spelling in Java and Scala files
  • Loading branch information
jbampton authored Oct 8, 2024
1 parent f83915e commit d37847e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1525,7 +1525,7 @@ public void spheroidArea() {
}

@Test
public void pologonize() throws ParseException {
public void polygonize() throws ParseException {
LineString line1 = GEOMETRY_FACTORY.createLineString(coordArray(180, 40, 30, 20, 20, 90));
LineString line2 = GEOMETRY_FACTORY.createLineString(coordArray(180, 40, 160, 160));
LineString line3 = GEOMETRY_FACTORY.createLineString(coordArray(80, 60, 120, 130, 150, 80));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ public void testGeometryFromText() {
}

@Test
public void testMakeEvelope() {
public void testMakeEnvelope() {
Double minX = 1.0;
Double minY = 100.0;
Double maxX = 2.0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ class dataFrameAPITestScala extends TestBaseScala {
assert(actualResult == expectedResult)
}

it("passed st_makeenvlope") {
it("passed st_makeenvelope") {
val df = sparkSession.sql(
"SELECT 0.0 AS minx, 1.0 AS miny, 2.0 AS maxx, 3.0 AS maxy, 1111 AS srid")
val actualResult =
Expand Down

0 comments on commit d37847e

Please sign in to comment.