Skip to content

Commit

Permalink
refactor: use Strictness.LENIENT for StsCredentialHolderTest
Browse files Browse the repository at this point in the history
  • Loading branch information
totalo committed Aug 23, 2024
1 parent c161245 commit 7e5114e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.Mock;
import org.mockito.junit.jupiter.MockitoExtension;
import org.mockito.junit.jupiter.MockitoSettings;
import org.mockito.quality.Strictness;

import java.io.ByteArrayInputStream;
import java.lang.reflect.Field;
Expand All @@ -41,6 +43,7 @@
import static org.mockito.Mockito.when;

@ExtendWith(MockitoExtension.class)
@MockitoSettings(strictness = Strictness.LENIENT)
class StsCredentialHolderTest {

private String securityCredentialsUrl;
Expand Down

0 comments on commit 7e5114e

Please sign in to comment.