Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/JWTGuard/Tests/SignatureAlgorithmTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ internal async Task Accessing_AuthorizedUrl_Is_Authorized_For_Supported_Signatur
}

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