Merge pull request #2901 from buckynbrocko/test-diff-key-wording

cli: reworded test diff color key
This commit is contained in:
Amaan Qureshi 2024-02-07 01:33:26 -05:00 committed by GitHub
commit d14d898f11
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -152,9 +152,10 @@ pub fn check_queries_at_path(language: &Language, path: &Path) -> Result<()> {
pub fn print_diff_key() {
println!(
"\n{} / {}",
"\n{} / {} / {}",
Colour::White.paint("correct"),
Colour::Green.paint("expected"),
Colour::Red.paint("actual")
Colour::Red.paint("unexpected")
);
}