Jonathan Ellithorpe created TINKERPOP3-985:
----------------------------------------------
Summary: shouldPersistDataOnClose makes incorrect feature check
Key: TINKERPOP3-985
URL: https://issues.apache.org/jira/browse/TINKERPOP3-985
Project: TinkerPop 3
Issue Type: Bug
Reporter: Jonathan Ellithorpe
Priority: Minor
Lines 1206-1211 in GraphTest.java (gremlin-test):
final Vertex v = graph.addVertex();
final Vertex u = graph.addVertex();
if (graph.features().edge().properties().supportsStringValues()) {
v.property(VertexProperty.Cardinality.single, "name", "marko");
u.property(VertexProperty.Cardinality.single, "name", "pavel");
}
The check tests for string value properties on edges, but it should be checking
string values on properties of vertices.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)