Browse Source

Dispose of images after use, in Pbm Round Trip Test

pull/1851/head
Ynse Hoornenborg 5 years ago
parent
commit
a5e1723be9
  1. 2
      tests/ImageSharp.Tests/Formats/Pbm/PbmRoundTripTests.cs

2
tests/ImageSharp.Tests/Formats/Pbm/PbmRoundTripTests.cs

@ -25,7 +25,7 @@ namespace SixLabors.ImageSharp.Tests.Formats.Pbm
// Act
using var originalImage = Image.Load(stream);
Image<Rgb24> colorImage = originalImage.CloneAs<Rgb24>();
using Image<Rgb24> colorImage = originalImage.CloneAs<Rgb24>();
using Image<Rgb24> encodedImage = this.RoundTrip(colorImage);
// Assert

Loading…
Cancel
Save