mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-03 21:23:38 +00:00
[PR #1124] Fix async test method naming inconsistency in ZipArchiveAsyncTests #1555
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/adamhathcock/sharpcompress/pull/1124
State: closed
Merged: Yes
Two async test methods in
ZipArchiveAsyncTests.cshad "Sync" suffixes despite being async methods usingawait.Changes
Zip_Random_Write_Remove_Sync→Zip_Random_Write_Remove_AsyncZip_Random_Write_Add_Sync→Zip_Random_Write_Add_AsyncBoth methods use
async ValueTaskandawait archive.SaveToAsync(), so the "Async" suffix correctly reflects their implementation.💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.