diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-02-02 11:30:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-02 11:30:23 +0300 |
commit | 1c878a0476257d328113efcd7088f1aa53f42e56 (patch) | |
tree | b4ba30e6b9549965387330f9eb7111c95795de69 /alacritty_terminal/tests | |
parent | 246ec8945d84f658fc88d02a33c3590ef4a92e0f (diff) | |
download | alacritty-1c878a0476257d328113efcd7088f1aa53f42e56.tar.gz alacritty-1c878a0476257d328113efcd7088f1aa53f42e56.zip |
Update winit to 0.28
Fixes #6644.
Fixes #6615.
Fixes #6558.
Fixes #6515.
Fixes #3187.
Fixes #62.
Diffstat (limited to 'alacritty_terminal/tests')
-rw-r--r-- | alacritty_terminal/tests/ref.rs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/alacritty_terminal/tests/ref.rs b/alacritty_terminal/tests/ref.rs index a9f64f55..848a0ad1 100644 --- a/alacritty_terminal/tests/ref.rs +++ b/alacritty_terminal/tests/ref.rs @@ -126,13 +126,7 @@ fn ref_test(dir: &Path) { let cell = &term_grid[Line(i as i32)][Column(j)]; let original_cell = &grid[Line(i as i32)][Column(j)]; if original_cell != cell { - println!( - "[{i}][{j}] {original:?} => {now:?}", - i = i, - j = j, - original = original_cell, - now = cell, - ); + println!("[{i}][{j}] {original_cell:?} => {cell:?}",); } } } |