aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/gleam/list_test.gleam4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gleam/list_test.gleam b/test/gleam/list_test.gleam
index a0db992..07b2bae 100644
--- a/test/gleam/list_test.gleam
+++ b/test/gleam/list_test.gleam
@@ -867,7 +867,7 @@ pub fn try_each_test() {
list.try_each(
over: [1, 1, 1],
with: fn(x) {
- let assert 1 = x
+ should.equal(x, 1)
Ok(Nil)
},
)
@@ -876,7 +876,7 @@ pub fn try_each_test() {
list.try_each(
over: [1, 2, 3],
with: fn(x) {
- let assert 1 = x
+ should.equal(x, 1)
Error(Nil)
},
)