You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2016/01/19 20:02:10 UTC

[07/11] incubator-tinkerpop git commit: Fixed test name.

Fixed test name.

"EdgeFunctionalityTest.shouldSupportAddVertexPropertyIfItCanBeAdded" should be "EdgeFunctionalityTest.shouldSupportAddEdgePropertyIfItCanBeAdded".

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

Branch: refs/heads/TINKERPOP-998
Commit: cf2e3b1a99dee9e45540859202cf784913658e47
Parents: f4e28a8
Author: Jonathan Ellithorpe <jd...@cs.stanford.edu>
Authored: Thu Jan 14 16:50:20 2016 -0800
Committer: Jonathan Ellithorpe <jd...@cs.stanford.edu>
Committed: Thu Jan 14 16:50:20 2016 -0800

----------------------------------------------------------------------
 .../org/apache/tinkerpop/gremlin/structure/FeatureSupportTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/cf2e3b1a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/FeatureSupportTest.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/FeatureSupportTest.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/FeatureSupportTest.java
index ac09c84..dcc480b 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/FeatureSupportTest.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/FeatureSupportTest.java
@@ -555,7 +555,7 @@ public class FeatureSupportTest {
         @FeatureRequirement(featureClass = Graph.Features.VertexFeatures.class, feature = Graph.Features.VertexFeatures.FEATURE_ADD_VERTICES)
         @FeatureRequirement(featureClass = Graph.Features.EdgeFeatures.class, feature = Graph.Features.EdgeFeatures.FEATURE_ADD_EDGES)
         @FeatureRequirement(featureClass = Graph.Features.EdgeFeatures.class, feature = EdgeFeatures.FEATURE_ADD_PROPERTY, supported = false)
-        public void shouldSupportAddVertexPropertyIfItCanBeAdded() throws Exception {
+        public void shouldSupportAddEdgePropertyIfItCanBeAdded() throws Exception {
             try {
                 final Vertex v = graph.addVertex();
                 final Edge e = v.addEdge("test", v);