Run code formatter on LzwReader implementation

Co-authored-by: adamhathcock <527620+adamhathcock@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-07 10:30:00 +00:00
parent 2b74807f5e
commit 1da178a4be

View File

@@ -31,7 +31,10 @@ public class LzwReaderTests : ReaderTests
public void Lzw_Reader_Factory_Detects_Format()
{
using Stream stream = File.OpenRead(Path.Combine(TEST_ARCHIVES_PATH, "Tar.tar.Z"));
using var reader = ReaderFactory.OpenReader(stream, new ReaderOptions { LeaveStreamOpen = false });
using var reader = ReaderFactory.OpenReader(
stream,
new ReaderOptions { LeaveStreamOpen = false }
);
Assert.True(reader.MoveToNextEntry());
Assert.NotNull(reader.Entry);
}