From a93a3f0598d754f1790d324dd0e8e192acb7930c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 28 Oct 2025 10:26:31 +0000 Subject: [PATCH] Address code review feedback - fix formatting Co-authored-by: adamhathcock <527620+adamhathcock@users.noreply.github.com> --- tests/SharpCompress.Test/GZip/GZipArchiveDirectoryTests.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/SharpCompress.Test/GZip/GZipArchiveDirectoryTests.cs b/tests/SharpCompress.Test/GZip/GZipArchiveDirectoryTests.cs index 201effcb..c56df539 100644 --- a/tests/SharpCompress.Test/GZip/GZipArchiveDirectoryTests.cs +++ b/tests/SharpCompress.Test/GZip/GZipArchiveDirectoryTests.cs @@ -12,8 +12,6 @@ public class GZipArchiveDirectoryTests : TestBase { using var archive = GZipArchive.Create(); - Assert.Throws(() => - archive.AddDirectoryEntry("test-dir", DateTime.Now) - ); + Assert.Throws(() => archive.AddDirectoryEntry("test-dir", DateTime.Now)); } }