1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-12-04 19:03:38 +00:00

chore: cargo fmt (#6124)

This commit is contained in:
David Knaack 2024-07-26 08:42:45 +02:00 committed by GitHub
parent 6806f56c90
commit d0cfa1756c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -510,7 +510,11 @@ project = overridden
format = "on [$symbol$project]($style) "
})
.collect();
let expected = Some(format!("on {} ", Color::Blue.bold().paint("☁️ overridden")));
#[rustfmt::skip]
let expected = Some(format!(
"on {} ",
Color::Blue.bold().paint("☁️ overridden")
));
assert_eq!(actual, expected);
dir.close()