diff options
| author | James McCoy <jamessan@jamessan.com> | 2017-08-21 12:38:24 -0400 | 
|---|---|---|
| committer | James McCoy <jamessan@jamessan.com> | 2017-08-21 20:29:49 -0400 | 
| commit | 651c6f9b6ebcd76fbf65045ab877fdf38b9d3db2 (patch) | |
| tree | f8364fb6ed2b08aa4600d4a1f43fb4cc0f5e11b5 /test/functional/legacy/packadd_spec.lua | |
| parent | 24a556419627d3369f0a55b95dce07cb5316cf8b (diff) | |
| download | rneovim-651c6f9b6ebcd76fbf65045ab877fdf38b9d3db2.tar.gz rneovim-651c6f9b6ebcd76fbf65045ab877fdf38b9d3db2.tar.bz2 rneovim-651c6f9b6ebcd76fbf65045ab877fdf38b9d3db2.zip | |
vim-patch:8.0.0326
Problem:    Packadd test uses wrong directory name.
Solution:   Use the variable name value. (Hirohito Higashi)
https://github.com/vim/vim/commit/24f8f543d4036c5d2ce4ea6973a174cf2176cb72
Diffstat (limited to 'test/functional/legacy/packadd_spec.lua')
| -rw-r--r-- | test/functional/legacy/packadd_spec.lua | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/test/functional/legacy/packadd_spec.lua b/test/functional/legacy/packadd_spec.lua index ba6eba3ce3..620f2d7247 100644 --- a/test/functional/legacy/packadd_spec.lua +++ b/test/functional/legacy/packadd_spec.lua @@ -89,7 +89,7 @@ describe('packadd', function()          endif          let top2_dir = s:topdir . '/Xdir2'          let real_dir = s:topdir . '/Xsym' -        silent !ln -s real_dir top2_dir +        exec "silent! !ln -s" real_dir top2_dir          let &rtp = top2_dir . ',' . top2_dir . '/after'          let &packpath = &rtp @@ -114,7 +114,7 @@ describe('packadd', function()          set rtp&          let rtp = &rtp -        silent !rm top2_dir +        exec "silent !rm" top2_dir        endfunc        func Test_packloadall() | 
