Skip to content

Commit 0e9edca

Browse files
Update RegularPolygonTests.cs
1 parent f91c5ff commit 0e9edca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ImageSharp.Drawing.Tests/Shapes/RegularPolygonTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ public class RegularPolygonTests
1717
[InlineData(2, true)]
1818
[InlineData(3, false)]
1919
[InlineData(4, false)]
20-
public void RequiresAtLeast3Verticies(int points, bool throws)
20+
public void RequiresAtLeast3Vertices(int points, bool throws)
2121
{
2222
if (throws)
2323
{
2424
ArgumentOutOfRangeException ex = Assert.Throws<ArgumentOutOfRangeException>(() => new RegularPolygon(Vector2.Zero, points, 10f, 0));
2525

26-
Assert.Equal("verticies", ex.ParamName);
26+
Assert.Equal("vertices", ex.ParamName);
2727
}
2828
else
2929
{

0 commit comments

Comments
 (0)