summaryrefslogtreecommitdiff
path: root/tests/typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ')
-rw-r--r--tests/typ/compiler/ops.typ12
1 files changed, 4 insertions, 8 deletions
diff --git a/tests/typ/compiler/ops.typ b/tests/typ/compiler/ops.typ
index a38a527c..722a9c8d 100644
--- a/tests/typ/compiler/ops.typ
+++ b/tests/typ/compiler/ops.typ
@@ -152,15 +152,11 @@
#test(test == test, true)
#test((() => {}) == (() => {}), false)
-// Content compares by hash equality.
+// Content cannot be compared.
#let t = [a]
-#test(t == t, true)
-#test([] == [], true)
-#test([a] == [a], true)
-#test([[a]] == [a], true)
-#test([] == [a], false)
-#test(box[] == box[], true)
-#test(box[a] == box[], false)
+#test(t == t, false)
+#test([] == [], false)
+#test([a] == [a], false)
---
// Test comparison operators.