diff options
author | Louis Pilfold <louis@lpil.uk> | 2020-01-14 11:47:31 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2020-01-14 11:47:31 +0000 |
commit | c74e1a0898890e92ab450312910f97ed9e028ab9 (patch) | |
tree | 1b76683a50ac04fb3704684c798000beb95b5b9e /test | |
parent | 36957584a74a2e299971e0c00ff9e03d03d5a205 (diff) | |
download | gleam_stdlib-c74e1a0898890e92ab450312910f97ed9e028ab9.tar.gz gleam_stdlib-c74e1a0898890e92ab450312910f97ed9e028ab9.zip |
Type annotations for gleam/list
Diffstat (limited to 'test')
-rw-r--r-- | test/gleam/list_test.gleam | 2 |
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) } } |