diff --git a/core-java-modules/core-java-security-4/src/test/java/com/baeldung/keystorealias/KeystoreCertificateNameAliasUnitTest.java b/core-java-modules/core-java-security-4/src/test/java/com/baeldung/keystorealias/KeystoreCertificateNameAliasUnitTest.java index e53c1c57cb..8f3ec35160 100644 --- a/core-java-modules/core-java-security-4/src/test/java/com/baeldung/keystorealias/KeystoreCertificateNameAliasUnitTest.java +++ b/core-java-modules/core-java-security-4/src/test/java/com/baeldung/keystorealias/KeystoreCertificateNameAliasUnitTest.java @@ -29,21 +29,21 @@ public class KeystoreCertificateNameAliasUnitTest { assertThat(ownerName.contains("my-cn.localhost")).isTrue(); } -@Test -void whenCheckingAliasAndName_thenNameIsNotFound() throws Exception { - KeyStore keystore = readKeyStore(); + @Test + void whenCheckingAliasAndName_thenNameIsNotFound() throws Exception { + KeyStore keystore = readKeyStore(); - assertThat(keystore.containsAlias(KEYSTORE_ALIAS)).isTrue(); + assertThat(keystore.containsAlias(KEYSTORE_ALIAS)).isTrue(); - X509Certificate x509Certificate = (X509Certificate) keystore.getCertificate(KEYSTORE_ALIAS); - String ownerName = x509Certificate.getSubjectX500Principal().getName(); - assertThat(ownerName.contains("commonName1")).isFalse(); -} + X509Certificate x509Certificate = (X509Certificate) keystore.getCertificate(KEYSTORE_ALIAS); + String ownerName = x509Certificate.getSubjectX500Principal().getName(); + assertThat(ownerName.contains("commonName1")).isFalse(); + } -@Test -void whenCheckingAliasAndName_thenAliasIsNotFound() throws Exception { - KeyStore keystore = readKeyStore(); + @Test + void whenCheckingAliasAndName_thenAliasIsNotFound() throws Exception { + KeyStore keystore = readKeyStore(); - assertThat(keystore.containsAlias("alias1")).isFalse(); -} + assertThat(keystore.containsAlias("alias1")).isFalse(); + } } \ No newline at end of file