chore(cli): reword test diff legend

This commit is contained in:
buckynbrocko 2024-02-03 06:31:37 -06:00 committed by Amaan Qureshi
parent 8a43199bdc
commit 8b38ab67de
No known key found for this signature in database
GPG key ID: E67890ADC4227273

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")
);
}