From 00cfeee56e84362e96b85ce171c35f559fce7754 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Fri, 19 Dec 2025 11:37:04 +0000 Subject: [PATCH] Fix logic to match ExtractAllEntries --- tests/SharpCompress.Test/ExtractAll.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/SharpCompress.Test/ExtractAll.cs b/tests/SharpCompress.Test/ExtractAll.cs index bf9cac40..09749d9c 100644 --- a/tests/SharpCompress.Test/ExtractAll.cs +++ b/tests/SharpCompress.Test/ExtractAll.cs @@ -25,7 +25,7 @@ public class ExtractAll : TestBase using var archive = ArchiveFactory.Open(testArchive); - if (archive.IsSolid && archive.Type != ArchiveType.SevenZip) + if (archive.IsSolid || archive.Type == ArchiveType.SevenZip) { var reader = archive.ExtractAllEntries(); while (await reader.MoveToNextEntryAsync())