Skip to content

Commit

Permalink
Update JwtAuthProviderNoCookiesTests.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Feb 22, 2024
1 parent 2119164 commit c321f5b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -425,7 +425,7 @@ public async Task Invalid_RefreshToken_throws_RefreshTokenException_Async()
{
// TODO: try to replicate CI behavior locally
Assert.That(ex.Status, Is.EqualTo(WebExceptionStatus.ProtocolError));
Assert.That((HttpWebResponse)ex.Response, Is.EqualTo(HttpStatusCode.Unauthorized));
Assert.That(((HttpWebResponse)ex.Response)!.StatusCode, Is.EqualTo(HttpStatusCode.Unauthorized));
}
}

Expand Down

0 comments on commit c321f5b

Please sign in to comment.