Skip to content

Commit

Permalink
fix: test for OR short circuiting uses the OR operator
Browse files Browse the repository at this point in the history
Signed-off-by: Calum Murray <[email protected]>
  • Loading branch information
Cali0707 committed May 16, 2024
1 parent bcc0ff4 commit a5495cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cesql/cesql_tck/binary_logical_operators.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ tests:
expression: TRUE OR TRUE
result: true
- name: OR operator is short circuit evaluated
expression: "true and (1 != 1 / 0)"
expression: "true or (1 != 1 / 0)"
result: true

- name: False xor false
Expand Down

0 comments on commit a5495cf

Please sign in to comment.