We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a42176b commit 2080b0dCopy full SHA for 2080b0d
1 file changed
tests/ImageSharp.Drawing.Tests/Issues/Issue_54.cs
@@ -44,14 +44,14 @@ public void CanDrawWithoutMemoryException()
44
}
45
46
[Fact]
47
- public void PenMustHaveAWidthGraterThanZero()
+ public void PenMustHaveAWidthGreaterThanZero()
48
{
49
ArgumentOutOfRangeException ex = Assert.Throws<ArgumentOutOfRangeException>(() =>
50
51
Pen pen = new Pen(new PenOptions(Color.White, 0));
52
});
53
54
- Assert.StartsWith("Parameter \"width\" (System.Single) must be greater than 0, was 0", ex.Message);
+ Assert.StartsWith("Parameter \"strokeWidth\" (System.Single) must be greater than 0, was 0", ex.Message);
55
56
57
0 commit comments