Skip to content

Commit 5eb0d78

Browse files
committed
Fix generated envelope coordinates
1 parent 520cb70 commit 5eb0d78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Tests/Tests.Domain/Shape.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ public class Shape
3636
})
3737
.RuleFor(p => p.Envelope, p => new EnvelopeGeoShape(new []
3838
{
39-
new GeoCoordinate(0, 0),
40-
new GeoCoordinate(45, 45)
39+
new GeoCoordinate(45, 0),
40+
new GeoCoordinate(0, 45)
4141
}))
4242
.RuleFor(p => p.Circle, p => new CircleGeoShape(GenerateGeoCoordinate(p))
4343
{

0 commit comments

Comments
 (0)