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
commit 25f0e15cdaff49de73cdde8caf64c3e245b8611e Merge: 069d633e02 fadcd60542 Author: Stephen Mallette <[email protected]> AuthorDate: Tue Sep 2 17:57:10 2025 -0400 Merge branch '3.8-dev' .../org/apache/tinkerpop/gremlin/server/Context.java | 18 ++++++------------ .../GremlinServerSerializationIntegrateTest.java | 4 ++-- 2 files changed, 8 insertions(+), 14 deletions(-) diff --cc gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSerializationIntegrateTest.java index ff15279133,cca1b80394..36e69ae9df --- a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSerializationIntegrateTest.java +++ b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSerializationIntegrateTest.java @@@ -175,13 -174,13 +175,13 @@@ public class GremlinServerSerialization @Test public void shouldDeserializePathPropertiesForScripts() { -- final Path p = client.submit("gmodern.V().has('name','marko').outE().inV().hasLabel('software').path()").one().getPath(); ++ final Path p = client.submit("g.V().has('name','marko').outE().inV().hasLabel('software').path()", gmodern).one().getPath(); assertPathElementsWithProperties(p); } @Test public void shouldDeserializePathPropertiesForScriptsWithTokens() { -- final Path p = client.submit("gmodern.with('materializeProperties','tokens').V().has('name','marko').outE().inV().hasLabel('software').path()").one().getPath(); ++ final Path p = client.submit("g.with('materializeProperties','tokens').V().has('name','marko').outE().inV().hasLabel('software').path()", gmodern).one().getPath(); assertPathElementsWithoutProperties(p); }
