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 2015/04/13 19:22:26 UTC

[05/43] incubator-tinkerpop git commit: Correct previous commit - had some bad mis-types.

Correct previous commit - had some bad mis-types.


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

Branch: refs/heads/master
Commit: 4b7990c8c208fe19a3b2283f8407c1387291dca9
Parents: 66d981c
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Apr 8 09:29:13 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Apr 8 09:29:13 2015 -0400

----------------------------------------------------------------------
 .../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/4b7990c8/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 8efa620..5d84c56 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
@@ -254,7 +254,7 @@ public class FeatureSupportTest {
         public void shouldSupportStringIdsIfStringIdsAreGeneratedFromTheGraph() throws Exception {
             final Vertex v = graph.addVertex();
             if (v.id() instanceof String)
-                fail(String.format(INVALID_git FEATURE_SPECIFICATION, VertexFeatures.class.getSimpleName(), FEATURE_STRING_IDS));
+                fail(String.format(INVALID_FEATURE_SPECIFICATION, VertexFeatures.class.getSimpleName(), FEATURE_STRING_IDS));
         }
 
         @Test