Skip to content

Commit c749b2b

Browse files
committed
Just execute one test
Signed-off-by: James Duong <[email protected]>
1 parent 51daf4b commit c749b2b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

java/integTest/src/test/java/glide/cluster/ClusterTlsCertificateTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
import java.util.ArrayList;
2222
import java.util.List;
2323
import org.junit.jupiter.api.BeforeAll;
24+
import org.junit.jupiter.api.Disabled;
2425
import org.junit.jupiter.api.Test;
2526

2627
public class ClusterTlsCertificateTest {
@@ -71,6 +72,7 @@ void testClusterTlsWithSelfSignedCertificateSucceeds() throws Exception {
7172
}
7273

7374
@Test
75+
@Disabled("Temporarily disabled to isolate single test")
7476
void testClusterTlsWithMultipleCertificatesSucceeds() throws Exception {
7577
String caCertStr = new String(caCert, StandardCharsets.UTF_8);
7678
String multipleCerts = caCertStr + "\n" + caCertStr;
@@ -109,6 +111,7 @@ void testClusterTlsWithInvalidCertificateFails() throws Exception {
109111
}
110112

111113
@Test
114+
@Disabled("Temporarily disabled to isolate single test")
112115
void testClusterTlsWithKeyStoreSucceeds() throws Exception {
113116
Path keyStorePath = Files.createTempFile("test-keystore", ".jks");
114117
char[] password = "password".toCharArray();

0 commit comments

Comments
 (0)