Format code with CSharpier

Co-authored-by: adamhathcock <527620+adamhathcock@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-22 13:21:36 +00:00
parent 8b74243e79
commit 7cbdc5b46c

View File

@@ -453,7 +453,7 @@ public class ZipReaderTests : ReaderTests
var path = Path.Combine(TEST_ARCHIVES_PATH, "Zip.deflate.dd.zip");
using Stream stream = new ForwardOnlyStream(File.OpenRead(path));
using var reader = ReaderFactory.OpenReader(stream);
// This should not throw, even if internal Flush() fails
while (reader.MoveToNextEntry())
{
@@ -476,7 +476,7 @@ public class ZipReaderTests : ReaderTests
var path = Path.Combine(TEST_ARCHIVES_PATH, "Zip.lzma.dd.zip");
using Stream stream = new ForwardOnlyStream(File.OpenRead(path));
using var reader = ReaderFactory.OpenReader(stream);
// This should not throw, even if internal Flush() fails
while (reader.MoveToNextEntry())
{