summaryrefslogtreecommitdiff
path: root/tests/typ/compiler/spread.typ
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-02-17 16:32:48 +0100
committerLaurenz <laurmaedje@gmail.com>2023-02-17 16:32:48 +0100
commit028632a3a10202ee21eaaf7ecf13ca7fe331106e (patch)
treeecba2b74b52b2c94b8ccf63dc8099d8ef608081c /tests/typ/compiler/spread.typ
parentdd5f07eb9110cc5e19dcb4441743a323128426fc (diff)
Fix error handling after hashtag
Diffstat (limited to 'tests/typ/compiler/spread.typ')
-rw-r--r--tests/typ/compiler/spread.typ8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/typ/compiler/spread.typ b/tests/typ/compiler/spread.typ
index e5724739..690e8931 100644
--- a/tests/typ/compiler/spread.typ
+++ b/tests/typ/compiler/spread.typ
@@ -85,9 +85,9 @@
}
---
-// Error: 12-18 cannot spread dictionary into array
-#{(1, 2, ..(a: 1))}
+// Error: 11-17 cannot spread dictionary into array
+#(1, 2, ..(a: 1))
---
-// Error: 6-12 cannot spread array into dictionary
-#{(..(1, 2), a: 1)}
+// Error: 5-11 cannot spread array into dictionary
+#(..(1, 2), a: 1)