summaryrefslogtreecommitdiff
path: root/tests/typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ')
-rw-r--r--tests/typ/code/ops.typ4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/typ/code/ops.typ b/tests/typ/code/ops.typ
index e3e2e855..0ad35a27 100644
--- a/tests/typ/code/ops.typ
+++ b/tests/typ/code/ops.typ
@@ -130,13 +130,13 @@
#test(test == test, true)
#test((() => {}) == (() => {}), false)
-// Templates compare by shallow equality.
+// Templates compare by some kind of equality.
#let t = [a]
#test(t == t, true)
#test([] == [], true)
#test([a] == [a], true)
+#test([[a]] == [a], true)
#test([] == [a], false)
-#test([[a]] == [a], false)
#test(box[] == box[], false)
---