From 840e58fc03ce14ac644cd253a276846c0f0eac73 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Sat, 29 Nov 2025 15:36:46 +0000 Subject: [PATCH] Update tests/SharpCompress.Test/Zip/ZipReaderTests.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- tests/SharpCompress.Test/Zip/ZipReaderTests.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/SharpCompress.Test/Zip/ZipReaderTests.cs b/tests/SharpCompress.Test/Zip/ZipReaderTests.cs index 8373718d..fc87dc57 100644 --- a/tests/SharpCompress.Test/Zip/ZipReaderTests.cs +++ b/tests/SharpCompress.Test/Zip/ZipReaderTests.cs @@ -404,9 +404,9 @@ public class ZipReaderTests : ReaderTests public void ZipReader_Returns_Same_Entries_As_ZipArchive() { // Verifies that ZipReader and ZipArchive return the same entries - // for standard single-volume ZIP files. Both process entries from - // LocalEntry headers, while ZipArchive also reads DirectoryEntry - // headers from the central directory. + // for standard single-volume ZIP files. ZipReader processes LocalEntry + // headers sequentially, while ZipArchive uses DirectoryEntry headers + // from the central directory and seeks to LocalEntry headers for data. var testFiles = new[] { "Zip.none.zip", "Zip.deflate.zip", "Zip.none.issue86.zip" }; foreach (var testFile in testFiles)