diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2018-10-09 09:02:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-09 09:02:26 +0200 |
| commit | 85e8fd96f4e04184cf22b691ea2229de901f4e4c (patch) | |
| tree | 7c27931728dedf33b7f733175e6c1015d848361c /src/nvim/testdir/test_functions.vim | |
| parent | 05cbe0da30fa9455da7d2663e6c5b57876e55fd1 (diff) | |
| parent | f181efdeaf07a788203b60a2df915118eeb6f0fc (diff) | |
| download | rneovim-85e8fd96f4e04184cf22b691ea2229de901f4e4c.tar.gz rneovim-85e8fd96f4e04184cf22b691ea2229de901f4e4c.tar.bz2 rneovim-85e8fd96f4e04184cf22b691ea2229de901f4e4c.zip | |
Merge #9098 'vim-patch:8.1.{459,463,466}'
Diffstat (limited to 'src/nvim/testdir/test_functions.vim')
| -rw-r--r-- | src/nvim/testdir/test_functions.vim | 2 |
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 |