Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
prashantkhoje authored May 26, 2022
1 parent 4fafba7 commit 78dd74f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/geo/bbox_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ func TestBoundingBoxFromGeomT(t *testing.T) {
t.Run(fmt.Sprintf("%s: %#v", tc.soType, tc.g), func(t *testing.T) {
bbox, err := boundingBoxFromGeomT(tc.g, tc.soType)
require.NoError(t, err)
// If bbox is within a small epsilon of expected, use the same values.
// If bbox is within a small epsilon of expected, use the same values.
if bbox != nil && tc.expected != nil {
const epsilon = 0.000001
if math.Abs(bbox.LoX-tc.expected.LoX) < epsilon {
Expand Down

0 comments on commit 78dd74f

Please sign in to comment.