Fix code formatting per CSharpier standards

Co-authored-by: adamhathcock <527620+adamhathcock@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-10-28 11:32:39 +00:00
parent e88841bdec
commit b4352fefa5

View File

@@ -12,6 +12,8 @@ public class GZipArchiveDirectoryTests : TestBase
{
using var archive = GZipArchive.Create();
Assert.Throws<NotSupportedException>(() => archive.AddDirectoryEntry("test-dir", DateTime.Now));
Assert.Throws<NotSupportedException>(() =>
archive.AddDirectoryEntry("test-dir", DateTime.Now)
);
}
}