Skip to content

Commit e675234

Browse files
authored
Fixed a typo (#11)
1 parent c7901b1 commit e675234

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/JWTGuard/Tests/SignatureAlgorithmTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ internal async Task Accessing_AuthorizedUrl_Is_Authorized_For_Supported_Signatur
3434
}
3535

3636
[Theory(DisplayName = "When a token uses an unsupported signature algorithm, the API should return a 401 Unauthorized response.")]
37-
[MemberData(nameof(GetDisllowedAlgorithms))]
37+
[MemberData(nameof(GetDisallowedAlgorithms))]
3838
internal async Task Accessing_AuthorizedUrl_Is_Unauthorized_For_Unsupported_Signature_Algorithms(string? signatureAlgorithm)
3939
{
4040
if (signatureAlgorithm is null)
@@ -74,7 +74,7 @@ private Task<string> GetJwtAsync(string signatureAlgorithm)
7474
/// <summary>
7575
/// Retrieves the disallowed signature algorithms for our test theories.
7676
/// </summary>
77-
public static TheoryData<string?> GetDisllowedAlgorithms()
77+
public static TheoryData<string?> GetDisallowedAlgorithms()
7878
{
7979
return TestSettings.CurrentTestSettings.DisallowedAlgorithms.Count == 0
8080
? new TheoryData<string?>([null])

0 commit comments

Comments
 (0)