diff options
Diffstat (limited to 'tests/typ/code')
| -rw-r--r-- | tests/typ/code/dict.typ | 2 | ||||
| -rw-r--r-- | tests/typ/code/field.typ | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/typ/code/dict.typ b/tests/typ/code/dict.typ index aa840eb3..23af145f 100644 --- a/tests/typ/code/dict.typ +++ b/tests/typ/code/dict.typ @@ -23,7 +23,7 @@ // Test rvalue missing key. { let dict = (a: 1, b: 2) - // Error: 11-20 dictionary does not contain key: "c" + // Error: 11-20 dictionary does not contain key "c" let x = dict("c") } diff --git a/tests/typ/code/field.typ b/tests/typ/code/field.typ index ff1dad9e..abccaede 100644 --- a/tests/typ/code/field.typ +++ b/tests/typ/code/field.typ @@ -12,7 +12,7 @@ } --- -// Error: 6-13 dictionary does not contain key: "invalid" +// Error: 6-13 dictionary does not contain key "invalid" {(:).invalid} --- |
