fix: use proper exception type

This commit is contained in:
Stevan Freeborn
2026-04-02 13:51:25 -05:00
parent d6e22f9f24
commit a819a5ee25
2 changed files with 3 additions and 3 deletions
@@ -9,7 +9,7 @@ public class StaticKeyProviderTests
{
var act = () => new StaticKeyProvider(null!);
act.Should().Throw<ArgumentNullException>();
act.Should().Throw<ArgumentException>();
}
[Fact]