Skip to content

Commit

Permalink
Buildfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Hartung committed Jun 20, 2022
1 parent 623a6ad commit ce5ef4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/JWT.Tests.Common/Algorithms/RSAlgorithmFactoryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void Create_Should_Return_Instance_Of_RS256Algorithm_When_Algorithm_Speci
[TestMethod]
public void Create_Should_Return_Instance_Of_RS384Algorithm_When_Algorithm_Specified_In_Jwt_Header_Is_RS384()
{
var publicKey = RSACryptoServiceProvider;
var publicKey = new RSACryptoServiceProvider();
var factory = new RSAlgorithmFactory(publicKey);
var context = new JwtDecoderContext
{
Expand Down Expand Up @@ -66,7 +66,7 @@ public void Create_Should_Return_Instance_Of_RS512Algorithm_When_Algorithm_Speci
[TestMethod]
public void Create_Should_Return_Instance_Of_RS1024Algorithm_When_Algorithm_Specified_In_Jwt_Header_Is_RS1024()
{
var publicKey = RSACryptoServiceProvider;
var publicKey = new RSACryptoServiceProvider();

var factory = new RSAlgorithmFactory(publicKey);
var context = new JwtDecoderContext
Expand Down

0 comments on commit ce5ef4e

Please sign in to comment.