fix(List): in test, Str.concat only takes 2 args, need to pass lambda

This commit is contained in:
rvcas 2021-03-08 21:46:06 -05:00
parent dfc36bd4a8
commit afe9c27c19

View file

@ -590,7 +590,7 @@ fn list_map3_different_length() {
["a", "b", "d" ]
["b"]
["c"]
Str.concat
(\a, b, c -> Str.concat a (Str.concat b c))
"#
),
RocList::from_slice(&[RocStr::from_slice("abc".as_bytes()),]),