You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2015/09/01 22:58:41 UTC

incubator-tinkerpop git commit: there is a meta-property test case in AddVertexTest that needed to have FeatureRequirement be meta-property. Neo4j without meta properties failed cause of it.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master f48ad191f -> 97fbdfa72


there is a meta-property test case in AddVertexTest that needed to have FeatureRequirement be meta-property. Neo4j without meta properties failed cause of it.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/97fbdfa7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/97fbdfa7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/97fbdfa7

Branch: refs/heads/master
Commit: 97fbdfa7208f001b8eec6b0e0dfc2aef232cba85
Parents: f48ad19
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Tue Sep 1 14:58:31 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Tue Sep 1 14:58:31 2015 -0600

----------------------------------------------------------------------
 .../tinkerpop/gremlin/process/traversal/step/map/AddVertexTest.java | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/97fbdfa7/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/AddVertexTest.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/AddVertexTest.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/AddVertexTest.java
index 131305a..c6ede24 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/AddVertexTest.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/AddVertexTest.java
@@ -115,6 +115,7 @@ public abstract class AddVertexTest extends AbstractGremlinTest {
     @LoadGraphWith(MODERN)
     @FeatureRequirement(featureClass = Graph.Features.VertexFeatures.class, feature = Graph.Features.VertexFeatures.FEATURE_ADD_VERTICES)
     @FeatureRequirement(featureClass = Graph.Features.VertexFeatures.class, feature = Graph.Features.VertexFeatures.FEATURE_ADD_PROPERTY)
+    @FeatureRequirement(featureClass = Graph.Features.VertexFeatures.class, feature = Graph.Features.VertexFeatures.FEATURE_META_PROPERTIES)
     public void g_V_hasXname_markoX_addVXmetaPersonX_propertyXname_nameX_propertyXfriendWeight_outEXknowsX_weight_sum__acl_privateX() {
         final Traversal<Vertex, Vertex> traversal = get_g_V_hasXname_markoX_propertyXfriendWeight_outEXknowsX_weight_sum__acl_privateX();
         printTraversalForm(traversal);