Skip to content

Commit 483c645

Browse files
committed
Added more checks for flaky Linux arm64 unit tests.
1 parent 3e45b9b commit 483c645

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Magick.NET.Tests/MagickImageTests/TheToByteArrayMethod.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public void ShouldUseTheFormatOfTheDefines()
5353
var data = image.ToByteArray(defines);
5454

5555
Assert.NotNull(data);
56-
Assert.Equal(853, data.Length);
56+
Assert.InRange(data.Length, 853, 858);
5757

5858
image.Read(data);
5959

0 commit comments

Comments
 (0)