diff options
Diffstat (limited to 'tests/typ/code/ops.typ')
| -rw-r--r-- | tests/typ/code/ops.typ | 4 |
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) --- |
