aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2020-01-14 11:47:31 +0000
committerLouis Pilfold <louis@lpil.uk>2020-01-14 11:47:31 +0000
commitc74e1a0898890e92ab450312910f97ed9e028ab9 (patch)
tree1b76683a50ac04fb3704684c798000beb95b5b9e /test
parent36957584a74a2e299971e0c00ff9e03d03d5a205 (diff)
downloadgleam_stdlib-c74e1a0898890e92ab450312910f97ed9e028ab9.tar.gz
gleam_stdlib-c74e1a0898890e92ab450312910f97ed9e028ab9.zip
Type annotations for gleam/list
Diffstat (limited to 'test')
-rw-r--r--test/gleam/list_test.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gleam/list_test.gleam b/test/gleam/list_test.gleam
index a8654d7..ee29ce8 100644
--- a/test/gleam/list_test.gleam
+++ b/test/gleam/list_test.gleam
@@ -157,7 +157,7 @@ pub fn find_map_test() {
let f = fn(x) {
case x {
2 -> Ok(4)
- _ -> Error(0)
+ _ -> Error(Nil)
}
}