summaryrefslogtreecommitdiff
path: root/tests/typ
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-11-20 23:32:30 +0100
committerLaurenz <laurmaedje@gmail.com>2022-11-20 23:32:30 +0100
commitddada4509729b0b8dcc394737d7eec588df51040 (patch)
tree828a84eea9488f14878bf0ca16ee121e20a9de29 /tests/typ
parent46d469f4bee6afd6b0d7dfdb3f095b98b18ac5f9 (diff)
Tracepoints for show rules
Diffstat (limited to 'tests/typ')
-rw-r--r--tests/typ/code/methods.typ4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/typ/code/methods.typ b/tests/typ/code/methods.typ
index b5eff78d..f5db8ca0 100644
--- a/tests/typ/code/methods.typ
+++ b/tests/typ/code/methods.typ
@@ -21,9 +21,9 @@
.map(s => s.trim())
.filter(s => s != "")
.map(s => s + "!")
- .join([\ ])
+ .join("\n ")
- test(rewritten, [Hello!\ This is a sentence!\ And one more!])
+ test(rewritten, "Hello!\n This is a sentence!\n And one more!")
}
---