summaryrefslogtreecommitdiff
path: root/tests/typ/compiler/dict.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/compiler/dict.typ')
-rw-r--r--tests/typ/compiler/dict.typ4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/typ/compiler/dict.typ b/tests/typ/compiler/dict.typ
index c8dd086f..fb0a59a3 100644
--- a/tests/typ/compiler/dict.typ
+++ b/tests/typ/compiler/dict.typ
@@ -48,8 +48,8 @@
#let dict = (a: 3, c: 2, b: 1)
#test("c" in dict, true)
#test(dict.len(), 3)
-#test(dict.values(), (3, 1, 2))
-#test(dict.pairs().map(p => p.first() + str(p.last())).join(), "a3b1c2")
+#test(dict.values(), (3, 2, 1))
+#test(dict.pairs().map(p => p.first() + str(p.last())).join(), "a3c2b1")
#dict.remove("c")
#test("c" in dict, false)