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 e8eda57bc1 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://github.com/apache/tinkerpop/pull/3212.
e8eda57bc1 is described below

commit e8eda57bc17e92c931f4e9c3e11309d51f17d880
Author: Andrea Child <[email protected]>
AuthorDate: Fri Sep 26 14:49:51 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://github.com/apache/tinkerpop/pull/3212.
---
 gremlin-python/src/main/python/tests/driver/test_client.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gremlin-python/src/main/python/tests/driver/test_client.py 
b/gremlin-python/src/main/python/tests/driver/test_client.py
index 88dda3a131..7145f8c389 100644
--- a/gremlin-python/src/main/python/tests/driver/test_client.py
+++ b/gremlin-python/src/main/python/tests/driver/test_client.py
@@ -78,7 +78,7 @@ def test_client_large_result(client):
 
 
 def test_client_script_submission(client):
-    assert 
len(client.submit("g.inject(0).repeat(inject(0)).times(99)").all().result()) == 
100
+    assert len(client.submit("g.inject(0,0,0,0,0)").all().result()) == 5
 
 
 def test_client_simple_eval(client):

Reply via email to