chore: Run spotless

This commit is contained in:
Magnus Leßmann (@MarkL4YG) 2024-11-20 17:34:30 +01:00
parent 2d5f3f72c2
commit 196d217bb7
3 changed files with 8 additions and 8 deletions

View file

@ -41,12 +41,14 @@ class TestOpenSSLCertificateCreator {
System.out.println("Certificate created: " + cert);
CertificateRequest childRequest = CertificateRequest
.builder()
.commonName("test.local")
.type(RequestType.NORMAL_CERTIFICATE)
.trustingAuthority(cert.fingerprint())
.subject(CertificateSubject.builder().country("DE").state("SH").locality("HH").organization("Crazy-Cats"))
.build();
.builder()
.commonName("test.local")
.type(RequestType.NORMAL_CERTIFICATE)
.trustingAuthority(cert.fingerprint())
.subject(
CertificateSubject.builder().country("DE").state("SH").locality("HH").organization("Crazy-Cats")
)
.build();
var spiedCert = spy(cert);
doNothing().when(spiedCert).close();