You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by dk...@apache.org on 2019/06/17 21:40:40 UTC

[tinkerpop] 02/02: fixed missing __

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

dkuppitz pushed a commit to branch TINKERPOP-1084
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 4c0c47bbabae461ada82338a47abcfa57e76553f
Author: Daniel Kuppitz <da...@hotmail.com>
AuthorDate: Mon Jun 17 14:40:27 2019 -0700

    fixed missing __
---
 gremlin-test/features/branch/Branch.feature | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gremlin-test/features/branch/Branch.feature b/gremlin-test/features/branch/Branch.feature
index 7bb3e04..69bb54c 100644
--- a/gremlin-test/features/branch/Branch.feature
+++ b/gremlin-test/features/branch/Branch.feature
@@ -96,7 +96,7 @@ Feature: Step - branch()
     And the traversal of
       """
       g.V().hasLabel("person").
-        branch(values("age")).
+        branch(__.values("age")).
           option(P.lt(30), __.constant("young")).
           option(P.gt(30), __.constant("old")).
           option(Pick.none, __.constant("on the edge"))