Skip to content

Commit

Permalink
swap parameters order for better logic
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsparing committed Feb 8, 2024
1 parent d22a7af commit 9e072f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ trait MosaicContextBehaviors extends MosaicSpatialQueryTest {
noException should be thrownBy getFunc("st_perimeter").apply(Seq(multiPolygon.expr))
noException should be thrownBy getFunc("st_distance").apply(Seq(multiPolygon.expr, pointWkt))
noException should be thrownBy getFunc("st_contains").apply(Seq(multiPolygon.expr, pointWkt))
noException should be thrownBy getFunc("st_within").apply(Seq(multiPolygon.expr, pointWkt))
noException should be thrownBy getFunc("st_within").apply(Seq(pointWkt, multiPolygon.expr))
noException should be thrownBy getFunc("st_translate").apply(Seq(multiPolygon.expr, xLit, yLit))
noException should be thrownBy getFunc("st_scale").apply(Seq(multiPolygon.expr, xLit, yLit))
noException should be thrownBy getFunc("st_rotate").apply(Seq(multiPolygon.expr, xLit, yLit))
Expand Down

0 comments on commit 9e072f1

Please sign in to comment.