Improve arg/var naming consistency

This commit is contained in:
Marcin Kulik
2025-05-06 17:33:51 +02:00
parent d6cc282ed8
commit e4b888178f
7 changed files with 25 additions and 25 deletions

View File

@@ -336,7 +336,7 @@ mod tests {
env.insert("SHELL".to_owned(), "/usr/bin/fish".to_owned());
env.insert("TERM".to_owned(), "xterm256-color".to_owned());
let theme = TtyTheme {
let tty_theme = TtyTheme {
fg: RGB8::new(0, 1, 2),
bg: RGB8::new(0, 100, 200),
palette: vec![
@@ -365,7 +365,7 @@ mod tests {
command: Some("/bin/bash".to_owned()),
title: Some("Demo".to_owned()),
env: Some(env),
term_theme: Some(theme),
term_theme: Some(tty_theme),
..Default::default()
};