spmallette commented on a change in pull request #1533:
URL: https://github.com/apache/tinkerpop/pull/1533#discussion_r773424529
##########
File path:
gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/language/grammar/TraversalMethodVisitorTest.java
##########
@@ -696,6 +700,30 @@ public void
testTraversalMethod_property_Object_Object_Object() throws Exception
compare(g.V().property(1,2,"key", 4),
eval("g.V().property(1,2,'key',4)"));
}
+ @Test
+ public void testTraversalMethod_property_Object() throws Exception {
+ LinkedHashMap<Object, Object> map = new LinkedHashMap<>();
Review comment:
can this work without a `LinkedHashMap` here? i think it would be
preferable to test with a regular old `HashMap`.
--
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]