diff --git a/test/logic.vli b/test/logic.vli index 644fa1e..4f5e627 100644 --- a/test/logic.vli +++ b/test/logic.vli @@ -19,5 +19,5 @@ ;; "and" is short-circuiting and should stop evaluation on first "false" (assert (= (and false (/ 1 0)) false)) -;; "and" is short-circuiting and should stop evaluation on first "true" +;; "or" is short-circuiting and should stop evaluation on first "true" (assert (or true (/ 1 0)))