Skip to content

Commit

Permalink
Revert incorrect update to test assertion
Browse files Browse the repository at this point in the history
* 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')
  • Loading branch information
hedengran committed Nov 23, 2021
1 parent 521060e commit 4ae25c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tck/features/expressions/boolean/Boolean5.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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:
"""
Expand All @@ -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 |
Expand Down

0 comments on commit 4ae25c8

Please sign in to comment.