Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Twinki14 committed Jan 10, 2024
1 parent 512adc7 commit 120b43e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/PolyZone.Tests/Shapes/CircleTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public void CircleA()
var insidePoints = new[]
{
new Vector2 { X = -10.41f, Y = 0.65f },
new Vector2 { X = -8.54f, Y = -2.25f },
new Vector2 { X = -8.54f, Y = -2.25f }
};

var outsidePoints = new[]
Expand Down
3 changes: 1 addition & 2 deletions src/PolyZone.Tests/Shapes/PolygonTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace PolyZone.Tests.Shapes;
public class PolygonTests
{
[Fact]
public void Polygon_EveryIslandShouldHaveOnePoint()
public void GeoJson_EveryIslandHasOnePoint()
{
var islandsGeoJson = File.ReadAllText("./Data/10m_minor_islands.geojson");
var pointsGeoJson = File.ReadAllText("./Data/10m_minor_islands_label_points.geojson");
Expand All @@ -29,7 +29,6 @@ public void Polygon_EveryIslandShouldHaveOnePoint()
}
}


[Fact]
public void Polygon_A_IsInside_ShouldPassTest()
{
Expand Down

0 comments on commit 120b43e

Please sign in to comment.