From 4ae25c8580b369f198ee32b7a128d55f6ae488c0 Mon Sep 17 00:00:00 2001 From: Gustav Hedengran Date: Tue, 23 Nov 2021 15:54:33 +0100 Subject: [PATCH] Revert incorrect update to test assertion * This assertion was initially correct * After some discussion we thought that it was wrong * We now understand why it initially was correct (we missed that 'false AND null -> false') --- tck/features/expressions/boolean/Boolean5.feature | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tck/features/expressions/boolean/Boolean5.feature b/tck/features/expressions/boolean/Boolean5.feature index a94ba9cc51..23aac4e90e 100644 --- a/tck/features/expressions/boolean/Boolean5.feature +++ b/tck/features/expressions/boolean/Boolean5.feature @@ -159,7 +159,7 @@ Feature: Boolean5 - Interop of logical operations | false | false | false | true | And no side effects - Scenario: [6] Conjunction is distributive over exclusive disjunction on null + Scenario: [6] Conjunction is not distributive over exclusive disjunction on null Given any graph When executing query: """ @@ -181,7 +181,7 @@ Feature: Boolean5 - Interop of logical operations | false | null | true | true | | false | null | false | true | | false | null | null | true | - | null | true | true | true | + | null | true | true | false | | null | true | false | true | | null | true | null | true | | null | false | true | true |