diff options
author | Louis Pilfold <louis@lpil.uk> | 2020-04-24 23:40:15 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2020-04-24 23:40:15 +0100 |
commit | 9465d11560a56cf5b3597b15c070ce8205920c28 (patch) | |
tree | 7a8ec07a3a386fa92563c8e1634ac25b977efd9c | |
parent | b688779c0859ef9da2569bc77475457786fdc490 (diff) | |
download | gleam_stdlib-9465d11560a56cf5b3597b15c070ce8205920c28.tar.gz gleam_stdlib-9465d11560a56cf5b3597b15c070ce8205920c28.zip |
Gleam v0.7 syntax
-rw-r--r-- | test/gleam/map_test.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gleam/map_test.gleam b/test/gleam/map_test.gleam index c19cfcd..88f2ef3 100644 --- a/test/gleam/map_test.gleam +++ b/test/gleam/map_test.gleam @@ -16,7 +16,7 @@ pub fn from_list_test() { tuple(1, 1), ] |> map.from_list - |> should.equal(map.from_list([tuple(1, 1)])) + |> should.equal(_, map.from_list([tuple(1, 1)])) } pub fn has_key_test() { |