summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2016-09-21 01:15:35 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2016-09-21 01:15:35 +0900
commita749e6bd16a4fa1374dd454868a4084288ff78dd (patch)
treea8ff293ce18a89b2801a2b6b7b270b26d1ae7aeb
parent791076d3662f04a20386f6ea9d166f6eccbd1a81 (diff)
Fix temp directory in a test case
-rw-r--r--src/options_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/options_test.go b/src/options_test.go
index c1bc9147..cc4d07c5 100644
--- a/src/options_test.go
+++ b/src/options_test.go
@@ -342,7 +342,7 @@ func TestDefaultCtrlNP(t *testing.T) {
check([]string{"--bind=ctrl-n:accept"}, curses.CtrlN, actAccept)
check([]string{"--bind=ctrl-p:accept"}, curses.CtrlP, actAccept)
- hist := "--history=/tmp/foo"
+ hist := "--history=/tmp/fzf-history"
check([]string{hist}, curses.CtrlN, actNextHistory)
check([]string{hist}, curses.CtrlP, actPreviousHistory)