diff options
author | inoas <mail@inoas.com> | 2022-06-27 23:08:12 +0200 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2022-07-03 22:10:45 +0100 |
commit | 5029da854bb757f12e963e52068edaca764f0df7 (patch) | |
tree | 402334cd2eb86f8d969d0a5f289626b0c28f8594 | |
parent | 443da76692bc839e42e9c65e0f4d125270d1d9bf (diff) | |
download | gleam_stdlib-5029da854bb757f12e963e52068edaca764f0df7.tar.gz gleam_stdlib-5029da854bb757f12e963e52068edaca764f0df7.zip |
comment
-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 } |