diff options
author | Christian Duerr <contact@christianduerr.com> | 2025-01-09 10:02:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-09 10:02:20 +0000 |
commit | 8ab406d3fd51620a1ded910bc89fc02a2bcb838a (patch) | |
tree | 058bce1892024f8d7f5bb7dd38057226f001c413 /alacritty_terminal/tests/ref.rs | |
parent | 8833551b0da3fdace94e1e6c07c6f57f45d9065e (diff) | |
download | r-alacritty-8ab406d3fd51620a1ded910bc89fc02a2bcb838a.tar.gz r-alacritty-8ab406d3fd51620a1ded910bc89fc02a2bcb838a.tar.bz2 r-alacritty-8ab406d3fd51620a1ded910bc89fc02a2bcb838a.zip |
Bump VTE to 0.14.0
Since this is a breaking change, it also bumps the alacritty_terminal
development version to 0.25.0-dev.
Diffstat (limited to 'alacritty_terminal/tests/ref.rs')
-rw-r--r-- | alacritty_terminal/tests/ref.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/alacritty_terminal/tests/ref.rs b/alacritty_terminal/tests/ref.rs index 1f992941..454f2e5d 100644 --- a/alacritty_terminal/tests/ref.rs +++ b/alacritty_terminal/tests/ref.rs @@ -112,9 +112,7 @@ fn ref_test(dir: &Path) { let mut terminal = Term::new(options, &size, Mock); let mut parser: ansi::Processor = ansi::Processor::new(); - for byte in recording { - parser.advance(&mut terminal, byte); - } + parser.advance(&mut terminal, &recording); // Truncate invisible lines from the grid. let mut term_grid = terminal.grid().clone(); |