summaryrefslogtreecommitdiff
path: root/tests/typ/compute
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/compute')
-rw-r--r--tests/typ/compute/data.typ4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/typ/compute/data.typ b/tests/typ/compute/data.typ
index f13f7da8..7b3fc576 100644
--- a/tests/typ/compute/data.typ
+++ b/tests/typ/compute/data.typ
@@ -4,7 +4,7 @@
---
// Test reading plain text files
#let data = read("/files/hello.txt")
-#test(data, "Hello, world!")
+#test(data, "Hello, world!\n")
---
// Error: 18-38 file not found (searched at files/missing.txt)
@@ -62,7 +62,7 @@
))
---
-// Error: 7-24 failed to parse toml file: expected `.`, `=`, index 15-15
+// Error: 7-24 failed to parse toml file: expected `.`, `=`, index 15-16
#toml("/files/bad.toml")
---