kenhuuu commented on code in PR #3255:
URL: https://github.com/apache/tinkerpop/pull/3255#discussion_r2475573078


##########
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/filter/Range.feature:
##########
@@ -546,104 +546,104 @@ Feature: Step - range()
       | result |
       | v[marko] |
 
-  Scenario: g_V_repeatXout_whereXhasXnameX_limitX1XXX_timesX2X
+  Scenario: g_V_repeatXout_whereXhasXnameX_order_limitX1XXX_timesX2X
     Given the modern graph
     And the traversal of
       """
-      g.V().repeat(out().where(has("name").limit(1))).times(2)
+      g.V().repeat(out().where(has("name").order().limit(1))).times(2)

Review Comment:
   By default, `order()` **without** a `by()` will order by the underlying 
Element equality, which is like based on the id. Providers may have different 
Ids for these vertices so the output might still be different. You'll probably 
need to do something like `order().by("name")` for modern and grateful.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to