summaryrefslogtreecommitdiff
path: root/tests/typ/compiler/plugin.typ
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-09-11 14:42:43 +0200
committerLaurenz <laurmaedje@gmail.com>2023-09-11 14:42:43 +0200
commit305524d005df075d53575552ee090fb53192a3fe (patch)
tree08b739e8fc41057b79a2d7ea7a7208ca358d60b3 /tests/typ/compiler/plugin.typ
parentb471ac7d590abd2398ce25193b4e4df373bf2e9c (diff)
Update tests for type system changes
Diffstat (limited to 'tests/typ/compiler/plugin.typ')
-rw-r--r--tests/typ/compiler/plugin.typ5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/typ/compiler/plugin.typ b/tests/typ/compiler/plugin.typ
index aafbdaa1..53d96f71 100644
--- a/tests/typ/compiler/plugin.typ
+++ b/tests/typ/compiler/plugin.typ
@@ -19,8 +19,9 @@
---
#let p = plugin("/files/hello.wasm")
-// Error: 10-14 unexpected argument
-#p.hello(true)
+// Error: 10-14 expected bytes, found boolean
+// Error: 27-29 expected bytes, found integer
+#p.hello(true, bytes(()), 10)
---
#let p = plugin("/files/hello.wasm")