Skip to content

Commit

Permalink
Unit test for Linux Arm64 are a bit flaky with jpeg files.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Mar 13, 2023
1 parent 5d1fd64 commit 3e45b9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public void ShouldUseTheSpecifiedFormat()
var data = image.ToByteArray(MagickFormat.Jpeg);

Assert.NotNull(data);
Assert.Equal(60304, data.Length);
Assert.InRange(data.Length, 60301, 60304);

image.Read(data);

Expand Down

0 comments on commit 3e45b9b

Please sign in to comment.