Browse Source

Merge branch 'js/v4-fix-3067' of https://github.com/SixLabors/ImageSharp into js/v4-fix-3067

pull/3069/head
James Jackson-South 2 months ago
parent
commit
3f05cbe4c4
  1. 2
      tests/ImageSharp.Tests/Formats/Bmp/BmpDecoderTests.cs

2
tests/ImageSharp.Tests/Formats/Bmp/BmpDecoderTests.cs

@ -589,7 +589,7 @@ public class BmpDecoderTests
using MemoryStream stream = new(bmp);
InvalidImageContentException ex = Assert.Throws<InvalidImageContentException>(() =>
Assert.Throws<InvalidImageContentException>(() =>
{
using Image image = BmpDecoder.Instance.Decode(DecoderOptions.Default, stream);
});

Loading…
Cancel
Save