diff --git a/tests/SharpCompress.Test/Mocks/ForwardOnlyStream.cs b/tests/SharpCompress.Test/Mocks/ForwardOnlyStream.cs index 180b8416..ae91533c 100644 --- a/tests/SharpCompress.Test/Mocks/ForwardOnlyStream.cs +++ b/tests/SharpCompress.Test/Mocks/ForwardOnlyStream.cs @@ -31,7 +31,7 @@ public class ForwardOnlyStream(Stream stream) : Stream public override long Position { - get => throw new NotSupportedException(); + get => stream.Position; set => throw new NotSupportedException(); }