aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-10-08 16:35:40 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-10-08 16:35:46 -0400
commitc64d6702e5027e494f602094c381dfb9a935608d (patch)
tree21c1eb72f240d24f1eb4a77eaaebb889852852a8
parent05cbe0da30fa9455da7d2663e6c5b57876e55fd1 (diff)
downloadrneovim-c64d6702e5027e494f602094c381dfb9a935608d.tar.gz
rneovim-c64d6702e5027e494f602094c381dfb9a935608d.tar.bz2
rneovim-c64d6702e5027e494f602094c381dfb9a935608d.zip
vim-patch:8.1.0459: Test_executable fails when there is a dog in the system
Problem: Test_executable fails when there is a dog in the system. Solution: Rename the dog. (Hirohito Higashi) https://github.com/vim/vim/commit/a05a0d325c7615439f4a42f00682b2ebad43c8d9
-rw-r--r--src/nvim/testdir/test_functions.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_functions.vim b/src/nvim/testdir/test_functions.vim
index 4a27a119f3..b1138bfc96 100644
--- a/src/nvim/testdir/test_functions.vim
+++ b/src/nvim/testdir/test_functions.vim
@@ -873,7 +873,7 @@ func Test_Executable()
call assert_equal(1, executable('win.ini'))
elseif has('unix')
call assert_equal(1, executable('cat'))
- call assert_equal(0, executable('dog'))
+ call assert_equal(0, executable('nodogshere'))
endif
endfunc