summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-03-18 18:19:13 +0100
committerLaurenz <laurmaedje@gmail.com>2023-03-18 18:27:22 +0100
commita16726ae6652a795ff24f368ca25f93bae673366 (patch)
treecb9de3573b2d094ddc52cff9f24bd4ba6e3c5474 /tests
parent533d4d57c6b65469e39d7b5d2289df1adb9cfb64 (diff)
Architecture description
Diffstat (limited to 'tests')
-rw-r--r--tests/typ/compiler/array.typ2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/typ/compiler/array.typ b/tests/typ/compiler/array.typ
index b51ee759..b9e5517e 100644
--- a/tests/typ/compiler/array.typ
+++ b/tests/typ/compiler/array.typ
@@ -163,7 +163,7 @@
#test((1, 2, 3, 4).fold(0, (s, x) => s + x), 10)
---
-// Error: 20-30 function must have exactly two parameters
+// Error: 20-22 unexpected argument
#(1, 2, 3).fold(0, () => none)
---