Skip to content

Commit

Permalink
Update ConcatenationTests.cs
Browse files Browse the repository at this point in the history
Issue #274/275 Changed the expected result for a pixel colour due to one small cahnge in code. The test should now pass. however, the test could not be run due to SixLabors compile problems.
  • Loading branch information
towsey committed Feb 7, 2020
1 parent 4b6a453 commit 4955f30
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public void ConcatenateIndexFilesTest24Hour()
// we expect only the second half (past midnight) of the image to be rendered
Assert.That.ImageIsSize(512, 632, actualImage);
Assert.That.PixelIsColor(new Point(105, 154), Color.FromArgb(34, 30, 126), actualImage);
Assert.That.PixelIsColor(new Point(100, 160), Color.FromArgb(15, 28, 64), actualImage);
Assert.That.PixelIsColor(new Point(100, 160), Color.FromArgb(8, 28, 64), actualImage);
}

/// <summary>
Expand Down

0 comments on commit 4955f30

Please sign in to comment.