You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by xi...@apache.org on 2023/05/01 23:34:45 UTC

[tinkerpop] branch 3.6-dev updated: CTR remove strategy sensitive ternary boolean test, see TINKERPOP-2940

This is an automated email from the ASF dual-hosted git repository.

xiazcy pushed a commit to branch 3.6-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/3.6-dev by this push:
     new e2177eb5f5 CTR remove strategy sensitive ternary boolean test, see TINKERPOP-2940
e2177eb5f5 is described below

commit e2177eb5f5454be2f9d1df781b06dd4da6168bc0
Author: Yang Xia <55...@users.noreply.github.com>
AuthorDate: Mon May 1 16:34:30 2023 -0700

    CTR remove strategy sensitive ternary boolean test, see TINKERPOP-2940
---
 .../gremlin/process/traversal/step/TernaryBooleanLogicsTest.java      | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/TernaryBooleanLogicsTest.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/TernaryBooleanLogicsTest.java
index ecd77cc5c2..729b12cc59 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/TernaryBooleanLogicsTest.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/TernaryBooleanLogicsTest.java
@@ -332,9 +332,7 @@ public class TernaryBooleanLogicsTest extends AbstractGremlinProcessTest {
         // Propagates Error to parent not()
         checkHasNext(false, g.inject(1).not(not(is(ERROR))));
         checkHasNext(false, g.inject(1).not(is(ERROR)));
-        // Propagates Error to parent where()
-        checkHasNext(false, g.inject(1).not(where(is(ERROR))));
-        checkHasNext(false, g.inject(1).where(is(ERROR)));
+
         // Does not propagate Error through non-filter parent
         checkHasNext(true, g.inject(1).not(union((is(ERROR)))));
         checkHasNext(false, g.inject(1).union((is(ERROR))));