summaryrefslogtreecommitdiff
path: root/tests/typ/compiler/let.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/let.typ
parentb471ac7d590abd2398ce25193b4e4df373bf2e9c (diff)
Update tests for type system changes
Diffstat (limited to 'tests/typ/compiler/let.typ')
-rw-r--r--tests/typ/compiler/let.typ4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/typ/compiler/let.typ b/tests/typ/compiler/let.typ
index 825f9e7b..60f930d4 100644
--- a/tests/typ/compiler/let.typ
+++ b/tests/typ/compiler/let.typ
@@ -189,11 +189,11 @@ Three
#let (a: "a", b: 2) = (a: 1, b: 2)
---
-// Error: 10-11 destructuring key not found in dictionary
+// Error: 10-11 dictionary does not contain key "b"
#let (a, b) = (a: 1)
---
-// Error: 10-11 destructuring key not found in dictionary
+// Error: 10-11 dictionary does not contain key "b"
#let (a, b: b) = (a: 1)
---