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

andreac 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 24de8eac50 Modified test which is meant to validate client script 
subission with simple traversal works to use a simplified traversal as it had 
ex posed an unrelated bug with usage of inject in repeat without the 
RepeatUnrollStrategy automatically unrolling it. Created 
https://issues.apache.org/jira/browse/TINKERPOP-3194 to address the issue. CTR 
to fix the master branch build. See also 
https://issues.apache.org/jira/browse/TINKERPOP-3194.
24de8eac50 is described below

commit 24de8eac50a68e314212cf1241a66b7064d8b25e
Author: Andrea Child <[email protected]>
AuthorDate: Fri Sep 26 15:17:36 2025 -0700

    Modified test which is meant to validate client script subission with 
simple traversal works to use a simplified traversal as it had ex
    posed an unrelated bug with usage of inject in repeat without the 
RepeatUnrollStrategy automatically unrolling it. Created 
https://issues.apache.org/jira/browse/TINKERPOP-3194 to address the issue. CTR 
to fix the master branch build. See also 
https://issues.apache.org/jira/browse/TINKERPOP-3194.
---
 .../org/apache/tinkerpop/gremlin/server/HttpDriverIntegrateTest.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/HttpDriverIntegrateTest.java
 
b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/HttpDriverIntegrateTest.java
index 22b112e2a7..5bcc6d9861 100644
--- 
a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/HttpDriverIntegrateTest.java
+++ 
b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/HttpDriverIntegrateTest.java
@@ -73,7 +73,7 @@ public class HttpDriverIntegrateTest extends 
AbstractGremlinServerIntegrationTes
         try {
             final Client client = cluster.connect();
             // default chunk size is 64
-            assertEquals(100, 
client.submit("g.inject(0).repeat(inject(0)).times(99)").all().get().size());
+            assertEquals(5, 
client.submit("g.inject(0,0,0,0,0)").all().get().size());
         } catch (Exception ex) {
             throw ex;
         } finally {

Reply via email to