From 24d45ab512610661ec4c02eb0e5ecfb1f50e0018 Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Fri, 12 Sep 2025 13:24:00 -0600 Subject: [PATCH] test: fixed a windows-specific preview command test --- src/bin/gman/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/gman/command.rs b/src/bin/gman/command.rs index dd02689..3a46346 100644 --- a/src/bin/gman/command.rs +++ b/src/bin/gman/command.rs @@ -119,7 +119,7 @@ mod tests { if cfg!(unix) { assert_str_eq!(preview, "MY_VAR=my_value echo 'hello world'"); } else if cfg!(windows) { - assert_str_eq!(preview, "set MY_VAR=my_value && \"echo\" \"hello world\""); + assert_str_eq!(preview, "set MY_VAR=my_value && echo \"hello world\""); } } }