From 55cb350d2c54caa9bb2e4fceaf9c101219f8f2d4 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Fri, 31 Oct 2025 11:44:32 +0000 Subject: [PATCH] remove needless variable --- .../SharpCompress.Test/Streams/SharpCompressStreamAsyncTests.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/SharpCompress.Test/Streams/SharpCompressStreamAsyncTests.cs b/tests/SharpCompress.Test/Streams/SharpCompressStreamAsyncTests.cs index bca1ad5f..d806246d 100644 --- a/tests/SharpCompress.Test/Streams/SharpCompressStreamAsyncTests.cs +++ b/tests/SharpCompress.Test/Streams/SharpCompressStreamAsyncTests.cs @@ -36,8 +36,6 @@ public class SharpCompressStreamAsyncTests using (SharpCompressStream scs = new SharpCompressStream(ms, true, false, 0x10000)) { - IStreamStack stack = (IStreamStack)scs; - scs.Seek(0x1000, SeekOrigin.Begin); Assert.Equal(0x1000, scs.Position); // position in the SharpCompressionStream Assert.Equal(0x1000, ms.Position); // initial seek + full buffer read