Github user okram commented on a diff in the pull request:

    https://github.com/apache/tinkerpop/pull/426#discussion_r79258319
  
    --- Diff: 
gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/filter/DedupTest.java
 ---
    @@ -73,6 +77,40 @@
     
         public abstract Traversal<Vertex, String> 
get_g_V_both_both_dedup_byXoutE_countX_name();
     
    +    public abstract Traversal<Vertex, String> 
get_g_V_out_in_valuesXnameX_fold_dedupXlocalX_unfold();
    +
    +    public abstract Traversal<Vertex, Map<String, String>> 
get_g_V_out_in_asXxX_in_asXyX_selectXx_yX_byXnameX_fold_dedupXlocal_x_yX_unfold();
    +
    +    @Test
    +    @LoadGraphWith(MODERN)
    +    public void g_V_out_in_valuesXnameX_fold_dedupXlocalX_unfold() {
    +        final Traversal<Vertex, String> traversal = 
get_g_V_out_in_valuesXnameX_fold_dedupXlocalX_unfold();
    +        final List<String> names = traversal.toList();
    +        assertEquals(3, names.size());
    +        assertThat(names, containsInAnyOrder("marko", "josh", "peter"));
    +    }
    +
    +    @Test
    +    @LoadGraphWith(MODERN)
    +    public void 
g_V_out_in_asXxX_in_asXyX_selectXx_yX_byXnameX_fold_dedupXlocal_x_yX_unfold() {
    --- End diff --
    
    This has a bad method name --- see my other comment and then fix it here 
too.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to