Browse Source

style cop my old foe

pull/1644/head
Scott Williams 5 years ago
parent
commit
2a8b1da925
  1. 1
      tests/ImageSharp.Tests/TestUtilities/PausedStream.cs

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

@ -137,6 +137,7 @@ 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