From 8d74446bef121b0dd3969611cf1d4a790d42b9ee Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 28 Apr 2024 22:03:00 +0900 Subject: Fix escaping for cmd.exe Close #3651 Close #2609 --- src/terminal_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/terminal_test.go') diff --git a/src/terminal_test.go b/src/terminal_test.go index 9fc53919..a448de30 100644 --- a/src/terminal_test.go +++ b/src/terminal_test.go @@ -319,9 +319,9 @@ func TestUnixCommands(t *testing.T) { // purpose of this test is to demonstrate some shortcomings of fzf's templating system on Windows func TestWindowsCommands(t *testing.T) { - if !util.IsWindows() { - t.SkipNow() - } + // XXX Deprecated + t.SkipNow() + tests := []testCase{ // reference: give{template, query, items}, want{output OR match} -- cgit v1.2.3