From 8ab406d3fd51620a1ded910bc89fc02a2bcb838a Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Thu, 9 Jan 2025 10:02:20 +0000 Subject: 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. --- alacritty_terminal/tests/ref.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'alacritty_terminal/tests/ref.rs') 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(); -- cgit