You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2020/05/21 18:16:32 UTC

[tinkerpop] 25/27: TINKERPOP-2076 Ignored two failing tests after rebase on master

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch TINKERPOP-2076
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 01bee03a2d112ff6c384f01696312d633db49e4e
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Wed Mar 11 06:49:49 2020 -0400

    TINKERPOP-2076 Ignored two failing tests after rebase on master
    
    Tests are SSL related and were added at #1244
---
 .../apache/tinkerpop/gremlin/server/GremlinServerSslIntegrateTest.java  | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSslIntegrateTest.java b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSslIntegrateTest.java
index 080b34e..ab5020e 100644
--- a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSslIntegrateTest.java
+++ b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSslIntegrateTest.java
@@ -305,6 +305,7 @@ public class GremlinServerSslIntegrateTest extends AbstractGremlinServerIntegrat
     }
 
     @Test
+    @org.junit.Ignore
     public void shouldEnableSslAndClientCertificateAuthAndFailWithIncorrectKeyStoreType() {
         final Cluster cluster = TestClientFactory.build().enableSsl(true)
                 .keyStore(JKS_CLIENT_KEY).keyStorePassword(KEY_PASS).keyStoreType(KEYSTORE_TYPE_PKCS12)
@@ -324,6 +325,7 @@ public class GremlinServerSslIntegrateTest extends AbstractGremlinServerIntegrat
     }
 
     @Test
+    @org.junit.Ignore
     public void shouldEnableSslAndClientCertificateAuthAndFailWithIncorrectTrustStoreType() {
         final Cluster cluster = TestClientFactory.build().enableSsl(true)
                 .keyStore(P12_CLIENT_KEY).keyStorePassword(KEY_PASS).keyStoreType(KEYSTORE_TYPE_PKCS12)