feat!: Update colors of package and php modules (#782)

This commit is contained in:
Matan Kushner
2020-02-01 18:10:12 -05:00
committed by GitHub
parent 9229a48bc9
commit 11b737bb44
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -33,7 +33,7 @@ fn folder_with_composer_file() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = format!("via {} ", Color::Red.bold().paint("🐘 v7.3.8"));
let expected = format!("via {} ", Color::Fixed(147).bold().paint("🐘 v7.3.8"));
assert_eq!(expected, actual);
Ok(())
}
@@ -50,7 +50,7 @@ fn folder_with_php_file() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = format!("via {} ", Color::Red.bold().paint("🐘 v7.3.8"));
let expected = format!("via {} ", Color::Fixed(147).bold().paint("🐘 v7.3.8"));
assert_eq!(expected, actual);
Ok(())
}