summaryrefslogtreecommitdiff
path: root/tests/src
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2025-02-17 11:52:11 +0100
committerGitHub <noreply@github.com>2025-02-17 11:52:11 +0100
commite294fe85a591f01aef1c2466aa0618dda3c58095 (patch)
treea4178b83e47c7470b6cd8671e358a79232377f55 /tests/src
parent2f1a5ab91444f6d45166d61aef33770bbe86953c (diff)
Bring back type/str compatibility for 0.13, with warnings and hints (#5877)
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/world.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/world.rs b/tests/src/world.rs
index 5c267832..56ebc868 100644
--- a/tests/src/world.rs
+++ b/tests/src/world.rs
@@ -251,6 +251,6 @@ fn lines(
(1..=count)
.map(|n| numbering.apply(engine, context, &[n]))
.collect::<SourceResult<Array>>()?
- .join(Some('\n'.into_value()), None)
+ .join(engine, span, Some('\n'.into_value()), None)
.at(span)
}