From f2a9171dd87f451f05e9542e2a9c1a2cd4126d39 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Thu, 12 Feb 2026 14:21:31 +0000 Subject: [PATCH] merge fix --- tests/SharpCompress.Performance/Benchmarks/ZipBenchmarks.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/SharpCompress.Performance/Benchmarks/ZipBenchmarks.cs b/tests/SharpCompress.Performance/Benchmarks/ZipBenchmarks.cs index 93834491..ea532de6 100644 --- a/tests/SharpCompress.Performance/Benchmarks/ZipBenchmarks.cs +++ b/tests/SharpCompress.Performance/Benchmarks/ZipBenchmarks.cs @@ -63,6 +63,9 @@ public class ZipBenchmarks : ArchiveBenchmarkBase { await using var entryStream = await entry.OpenEntryStreamAsync().ConfigureAwait(false); await entryStream.CopyToAsync(Stream.Null).ConfigureAwait(false); + } + } + [Benchmark(Description = "Zip: Extract all entries (Reader API) - SystemDeflate")] public void SystemZipExtractReaderApi() {