mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
fix(List): in test, Str.concat only takes 2 args, need to pass lambda
This commit is contained in:
parent
dfc36bd4a8
commit
afe9c27c19
1 changed files with 1 additions and 1 deletions
|
@ -590,7 +590,7 @@ fn list_map3_different_length() {
|
||||||
["a", "b", "d" ]
|
["a", "b", "d" ]
|
||||||
["b"]
|
["b"]
|
||||||
["c"]
|
["c"]
|
||||||
Str.concat
|
(\a, b, c -> Str.concat a (Str.concat b c))
|
||||||
"#
|
"#
|
||||||
),
|
),
|
||||||
RocList::from_slice(&[RocStr::from_slice("abc".as_bytes()),]),
|
RocList::from_slice(&[RocStr::from_slice("abc".as_bytes()),]),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue