diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-08-31 16:25:12 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-08-31 16:25:12 +0200 |
| commit | 7f48e8fe6668c5b2fdc62cc70e6bcffb744f411c (patch) | |
| tree | 6ec437098d9f6df511cfbc0805ac51af288c4eec /tests | |
| parent | 3481d8cc81a2b3a14118869c7f0ffe204ff3efc8 (diff) | |
Make user-facing "debug" representation use Debug instead of Display
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 41f12f2e..83b43ce0 100644 --- a/tests/typeset.rs +++ b/tests/typeset.rs @@ -388,7 +388,7 @@ fn draw(ctx: &Context, frames: &[Rc<Frame>], dpp: f32) -> sk::Pixmap { let pixel_height = (dpp * height.to_pt() as f32) as u32; if pixel_width > 4000 || pixel_height > 4000 { panic!( - "overlarge image: {} by {} ({} x {})", + "overlarge image: {} by {} ({:?} x {:?})", pixel_width, pixel_height, width, height, ); } |
