Skip to content

Commit

Permalink
Fixed unit test.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Dec 11, 2022
1 parent 3b53692 commit b0b226f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Magick.NET.Tests/Framework/Coders/TheCaptionCoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ public void ShouldAddCorrectLineBreaks2()

using (var image = new MagickImage(caption, settings))
{
ColorAssert.Equal(MagickColors.Green, image, 158, 55);
ColorAssert.Equal(MagickColors.Green, image, 179, 81);
ColorAssert.Equal(MagickColors.Red, image, 443, 25);
ColorAssert.Equal(MagickColors.Red, image, 392, 55);
ColorAssert.Equal(MagickColors.Green, image, 155, 57);
ColorAssert.Equal(MagickColors.Green, image, 178, 80);
ColorAssert.Equal(MagickColors.Red, image, 441, 26);
ColorAssert.Equal(MagickColors.Red, image, 395, 55);
ColorAssert.Equal(MagickColors.Red, image, 231, 116);
ColorAssert.Equal(new MagickColor("#0000"), image, 170, 93);
}
Expand Down

0 comments on commit b0b226f

Please sign in to comment.