Enable workspace lints for tests

This commit is contained in:
Laurenz 2023-12-04 14:58:11 +01:00
parent f5c90c8714
commit 8a2ef9ea01
2 changed files with 4 additions and 1 deletions

View File

@ -32,3 +32,6 @@ harness = false
name = "benches"
path = "src/benches.rs"
harness = false
[lints]
workspace = true

View File

@ -430,7 +430,7 @@ fn test(
if world.print.frames {
for frame in &document.pages {
writeln!(output, "{:#?}\n", frame).unwrap();
writeln!(output, "{frame:#?}\n").unwrap();
}
}