summaryrefslogtreecommitdiff
path: root/tests/suite/foundations/dict.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/suite/foundations/dict.typ')
-rw-r--r--tests/suite/foundations/dict.typ8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/suite/foundations/dict.typ b/tests/suite/foundations/dict.typ
index d75b9162..c1cf3f21 100644
--- a/tests/suite/foundations/dict.typ
+++ b/tests/suite/foundations/dict.typ
@@ -176,10 +176,10 @@
#let c = "value"
#let d = "conflict"
-#assert.eq(((a): b), ("hello": "world"))
-#assert.eq(((a): 1, (a): 2), ("hello": 2))
-#assert.eq((hello: 1, (a): 2), ("hello": 2))
-#assert.eq((a + b: c, (a + b): d, (a): "value2", a: "value3"), ("helloworld": "conflict", "hello": "value2", "a": "value3"))
+#test(((a): b), ("hello": "world"))
+#test(((a): 1, (a): 2), ("hello": 2))
+#test((hello: 1, (a): 2), ("hello": 2))
+#test((a + b: c, (a + b): d, (a): "value2", a: "value3"), ("helloworld": "conflict", "hello": "value2", "a": "value3"))
--- issue-1338-dictionary-underscore ---
#let foo = "foo"