diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-02-02 16:18:10 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-02-02 16:18:10 +0100 |
| commit | d3ccd55d4bdb85343ae80574b6833fac2cf22181 (patch) | |
| tree | df6f31209173054b0974ae87b47947bcdbb74734 /tests | |
| parent | a7b403fd742941f6b163f06876aec96729db707f (diff) | |
Split up styled and sequence template
Diffstat (limited to 'tests')
| -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) --- |
