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/30 17:57:05 UTC

incubator-tinkerpop git commit: not equals for the OPT_OUT computers().

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 918c3573f -> 97fd47d69


not equals for the OPT_OUT computers().


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

Branch: refs/heads/master
Commit: 97fd47d69659064c448139116fc5f0df604ff097
Parents: 918c357
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Wed Sep 30 09:56:46 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Wed Sep 30 09:56:58 2015 -0600

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


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/97fd47d6/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/AbstractGremlinSuite.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/AbstractGremlinSuite.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/AbstractGremlinSuite.java
index 5f8fd4f..8383fb2 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/AbstractGremlinSuite.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/AbstractGremlinSuite.java
@@ -341,7 +341,7 @@ public abstract class AbstractGremlinSuite extends Suite {
                 } catch (ClassNotFoundException e) {
                     return Object.class;
                 }
-            }).filter(c -> c.equals(Object.class)).anyMatch(c -> c == graphProviderDescriptor.get().computer());
+            }).filter(c -> !c.equals(Object.class)).anyMatch(c -> c == graphProviderDescriptor.get().computer());
         }
     }
 }