summaryrefslogtreecommitdiffstats
path: root/src/terminal_test.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2024-04-28 22:03:00 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2024-04-28 22:03:00 +0900
commit8d74446bef121b0dd3969611cf1d4a790d42b9ee (patch)
tree74317c8dbfb18f7df68078dd280aea8ea0edf720 /src/terminal_test.go
parent7ed6c7905c814d22e3c12cf161a054d3ecb7adde (diff)
Fix escaping for cmd.exe
Close #3651 Close #2609
Diffstat (limited to 'src/terminal_test.go')
-rw-r--r--src/terminal_test.go6
1 files changed, 3 insertions, 3 deletions
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}