Skip to content

Commit

Permalink
Fix sonar issues
Browse files Browse the repository at this point in the history
  • Loading branch information
enricovianello committed Sep 19, 2024
1 parent adccdf7 commit 48d9e59
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ void fetchJWKEndpointTests()
}

@Test
void fetchJWKEndpointWithErrorTests() throws RestClientException, IOException {
void fetchJWKEndpointWithErrorTests() throws RestClientException {

OidcConfigurationFetcher fetcher = getFetcherWithErrorOnGetJwk();
final URI jwkUri = URI.create(JWK_URI);
Expand All @@ -292,7 +292,7 @@ void fetchJWKEndpointWithErrorTests() throws RestClientException, IOException {
}

@Test
void fetchJWKEndpointWithRuntimeException() throws RestClientException, IOException {
void fetchJWKEndpointWithRuntimeException() throws RestClientException {

OidcConfigurationFetcher fetcher = getFetcherWithRuntimeExceptionOnGetJwk();
final URI jwkUri = URI.create(JWK_URI);
Expand Down

0 comments on commit 48d9e59

Please sign in to comment.