Fix the CI tests

This commit is contained in:
Tanner Babcock 2022-05-04 20:45:38 +00:00 committed by Abin Simon
parent e63d7b89d1
commit 811b86581e
2 changed files with 3 additions and 3 deletions

View file

@ -480,7 +480,7 @@ mod test {
let icon = Icons::new(Theme::Fancy, " ".to_string());
let icon_str = icon.get(&meta.name);
assert_eq!(icon_str, format!("{}{}", "\u{f115}", icon.icon_separator)); //
assert_eq!(icon_str, format!("{}{}", "\u{e5ff}", icon.icon_separator)); //
}
#[test]
@ -504,7 +504,7 @@ mod test {
let icon = Icons::new(Theme::Fancy, " ".to_string());
let icon_str = icon.get(&meta.name);
assert_eq!(icon_str, format!("{}{}", "\u{f115}", icon.icon_separator)); // 
assert_eq!(icon_str, format!("{}{}", "\u{e5ff}", icon.icon_separator)); // 
}
#[test]

View file

@ -269,7 +269,7 @@ mod test {
let colors = Colors::new(color::ThemeOption::NoLscolors);
assert_eq!(
" directory".to_string().with(Color::AnsiValue(33)),
" directory".to_string().with(Color::AnsiValue(33)),
meta.name.render(
&colors,
&icons,