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

lyndonb pushed a commit to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/3.6-dev by this push:
     new f55ea9c49f Removing extra comma from golangtranslatortest
f55ea9c49f is described below

commit f55ea9c49f33001c4bffc96e9de2ef35093d2ea8
Author: Lyndon Bauto <[email protected]>
AuthorDate: Fri May 20 14:06:08 2022 -0700

    Removing extra comma from golangtranslatortest
---
 .../gremlin/process/traversal/translator/GolangTranslatorTest.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/translator/GolangTranslatorTest.java
 
b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/translator/GolangTranslatorTest.java
index fca3baba16..503de20281 100644
--- 
a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/translator/GolangTranslatorTest.java
+++ 
b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/translator/GolangTranslatorTest.java
@@ -90,7 +90,7 @@ public class GolangTranslatorTest {
 
     @Test
     public void shouldTranslateStrategies() {
-        assertEquals("g.WithStrategies(gremlingo.ReadOnlyStrategy(), 
gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices:
 false, Vertices: gremlingo.T__.HasLabel(\"person\"), }), 
gremlingo.SeedStrategy(gremlingo.SeedStrategyConfig{Seed: 
999999})).V().Has(\"name\")",
+        assertEquals("g.WithStrategies(gremlingo.ReadOnlyStrategy(), 
gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices:
 false, Vertices: gremlingo.T__.HasLabel(\"person\")}), 
gremlingo.SeedStrategy(gremlingo.SeedStrategyConfig{Seed: 
999999})).V().Has(\"name\")",
                 
translator.translate(g.withStrategies(ReadOnlyStrategy.instance(),
                                 
SubgraphStrategy.build().checkAdjacentVertices(false).vertices(hasLabel("person")).create(),
                                 new SeedStrategy(999999)).

Reply via email to