Skip to content

Commit

Permalink
refactor: reduce test dependency on EOL lib
Browse files Browse the repository at this point in the history
- instead of using org.springframework.security.saml.trust.X509TrustManager
which is provided by a saml lib that has reached EOL, use a more standard/generic
X509TrustManager.

[#186958651]
  • Loading branch information
peterhaochen47 committed Feb 9, 2024
1 parent 2e3d4d6 commit 115bad4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import org.junit.Assert;
import org.junit.Test;
import org.mockito.Mockito;
import org.springframework.security.saml.trust.X509TrustManager;
import javax.net.ssl.X509TrustManager;

import java.security.cert.CertificateExpiredException;
import java.security.cert.X509Certificate;
Expand Down

0 comments on commit 115bad4

Please sign in to comment.