diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/typeset.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/typeset.rs b/tests/typeset.rs index 037bd7ef..012aff63 100644 --- a/tests/typeset.rs +++ b/tests/typeset.rs @@ -217,7 +217,7 @@ fn parse_diags(src: &str, map: &LineMap) -> SpanVec<Diag> { fn print_diag(diag: &Spanned<Diag>, map: &LineMap) { let start = map.location(diag.span.start).unwrap(); let end = map.location(diag.span.end).unwrap(); - println!("{}: {}-{}: {}", diag.v.level, start, end, diag.v.message,); + println!("{}: {}-{}: {}", diag.v.level, start, end, diag.v.message); } fn draw(layouts: &[BoxLayout], env: &Env, pixel_per_pt: f32) -> Canvas { |
