From 8b38ab67de71594b3b457d092814c6496b948cd5 Mon Sep 17 00:00:00 2001 From: buckynbrocko <77247638+buckynbrocko@users.noreply.github.com> Date: Sat, 3 Feb 2024 06:31:37 -0600 Subject: [PATCH] chore(cli): reword test diff legend --- cli/src/test.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cli/src/test.rs b/cli/src/test.rs index c8e7afa7..f388ba20 100644 --- a/cli/src/test.rs +++ b/cli/src/test.rs @@ -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") ); }