diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/gleam/list_test.gleam | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gleam/list_test.gleam b/test/gleam/list_test.gleam index 7373ef9..190e49c 100644 --- a/test/gleam/list_test.gleam +++ b/test/gleam/list_test.gleam @@ -314,7 +314,7 @@ pub fn all_test() { case x { 1 -> True 2 -> False - // Crash to ensure we short-circuit + // Crash if no short-circuit _ -> { assert True = False } @@ -345,7 +345,7 @@ pub fn any_test() { case x { 1 -> False 2 -> True - // Crash to ensure we short-circuit + // Crash if no short-circuit _ -> { assert True = False } |