From c64d6702e5027e494f602094c381dfb9a935608d Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Mon, 8 Oct 2018 16:35:40 -0400 Subject: [PATCH] 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 --- src/nvim/testdir/test_functions.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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