Skip to content

Commit 64f652f

Browse files
committed
rename
1 parent 118d522 commit 64f652f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benchmark/Microsoft.IdentityModel.Benchmarks/ValidateTokenAsyncTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public void Setup()
3838
};
3939
}
4040

41-
[GlobalSetup(Targets = new[] { nameof(ValidateJsonWebTokenAsync) })]
41+
[GlobalSetup(Targets = new[] { nameof(JsonWebTokenHandler_ValidateTokenAsync) })]
4242
public void JsonWebTokenSetup()
4343
{
4444
jsonWebTokenHandler = new JsonWebTokenHandler();
@@ -47,7 +47,7 @@ public void JsonWebTokenSetup()
4747
[Benchmark]
4848
public async Task<TokenValidationResult> JsonWebTokenHandler_ValidateTokenAsync() => await jsonWebTokenHandler.ValidateTokenAsync(jsonWebToken, validationParameters).ConfigureAwait(false);
4949

50-
[GlobalSetup(Targets = new[] { nameof(ValidateJwtSecurityTokenAsync) })]
50+
[GlobalSetup(Targets = new[] { nameof(JwtSecurityTokenHandler_ValidateTokenAsync) })]
5151
public void JwtSecurityTokenSetup()
5252
{
5353
jwtSecurityTokenHandler = new JwtSecurityTokenHandler();

0 commit comments

Comments
 (0)