Skip to content

Commit d9abb3f

Browse files
committed
test: suppress CA2014 at class level in Base58ZeroAllocTests
1 parent d47cc10 commit d9abb3f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/Base58Encoding.Tests/Base58ZeroAllocTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
using System.Diagnostics.CodeAnalysis;
12
using System.Text;
23

34
namespace Base58Encoding.Tests;
45

6+
[SuppressMessage("Performance", "CA2014:Do not use stackalloc in loops", Justification = "Intentional — loop bounds are small and known-safe in tests")]
57
public class Base58ZeroAllocTests
68
{
79
[Fact]

0 commit comments

Comments
 (0)