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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4319d16  Removed driver oriented batch by 2 test. CTR
4319d16 is described below

commit 4319d167e18f6803e28c4ce4ba3c72c316d1dc6a
Author: Stephen Mallette <[email protected]>
AuthorDate: Sat May 1 06:23:16 2021 -0400

    Removed driver oriented batch by 2 test. CTR
---
 .../gremlin/server/GremlinServerIntegrateTest.java | 28 +++++++++++-----------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git 
a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerIntegrateTest.java
 
b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerIntegrateTest.java
index 7c231d8..7d9983f 100644
--- 
a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerIntegrateTest.java
+++ 
b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerIntegrateTest.java
@@ -737,20 +737,20 @@ public class GremlinServerIntegrateTest extends 
AbstractGremlinServerIntegration
         }
     }
 
-    @Test
-    public void shouldBatchResultsByTwosWithDriver() throws Exception {
-        final Cluster cluster = TestClientFactory.build().create();
-        final Client client = cluster.connect();
-
-        try {
-            final List<Result> results = 
client.submit("[0,1,2,3,4,5,6,7,8,9]").all().join();
-            for (int ix = 0; ix < results.size(); ix++) {
-                assertEquals(ix, results.get(ix).getInt());
-            }
-        } finally {
-            cluster.close();
-        }
-    }
+//    @Test
+//    public void shouldBatchResultsByTwosWithDriver() throws Exception {
+//        final Cluster cluster = TestClientFactory.build().create();
+//        final Client client = cluster.connect();
+//
+//        try {
+//            final List<Result> results = 
client.submit("[0,1,2,3,4,5,6,7,8,9]").all().join();
+//            for (int ix = 0; ix < results.size(); ix++) {
+//                assertEquals(ix, results.get(ix).getInt());
+//            }
+//        } finally {
+//            cluster.close();
+//        }
+//    }
 
     @Test
     @SuppressWarnings("unchecked")

Reply via email to