From afe9c27c19facc352ed53394b3d80c25dcc7f33f Mon Sep 17 00:00:00 2001 From: rvcas Date: Mon, 8 Mar 2021 21:46:06 -0500 Subject: [PATCH] fix(List): in test, Str.concat only takes 2 args, need to pass lambda --- compiler/test_gen/src/gen_list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/test_gen/src/gen_list.rs b/compiler/test_gen/src/gen_list.rs index 34244d06fb..83d93eebf2 100644 --- a/compiler/test_gen/src/gen_list.rs +++ b/compiler/test_gen/src/gen_list.rs @@ -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()),]),