diff options
Diffstat (limited to 'alacritty_terminal/src')
-rw-r--r-- | alacritty_terminal/src/term/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty_terminal/src/term/mod.rs b/alacritty_terminal/src/term/mod.rs index 46a94f17..b2f4ea61 100644 --- a/alacritty_terminal/src/term/mod.rs +++ b/alacritty_terminal/src/term/mod.rs @@ -2982,7 +2982,7 @@ mod tests { term.push_title(); term.set_title(Some("Next".into())); assert_eq!(term.title, Some("Next".into())); - assert_eq!(term.title_stack.get(0).unwrap(), &Some("Test".into())); + assert_eq!(term.title_stack.first().unwrap(), &Some("Test".into())); // Title can be popped from stack and set as the window title. term.pop_title(); |