Browse Source

skipping `DisposeAsync()` as it not in netcoreapp2.1

its not used anyway in our code so doesn't matter.
pull/1644/head
Scott Williams 5 years ago
parent
commit
0dd0f0f01c
  1. 2
      tests/ImageSharp.Tests/TestUtilities/PausedStream.cs

2
tests/ImageSharp.Tests/TestUtilities/PausedStream.cs

@ -139,7 +139,5 @@ namespace SixLabors.ImageSharp.Tests.TestUtilities
public override int ReadByte() => this.Await(() => this.innerStream.ReadByte());
protected override void Dispose(bool disposing) => this.innerStream.Dispose();
public override ValueTask DisposeAsync() => this.innerStream.DisposeAsync();
}
}

Loading…
Cancel
Save