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 | |
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
-rw-r--r-- | src/nvim/version.c | 2 | ||||
-rw-r--r-- | test/functional/legacy/packadd_spec.lua | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index a0c46c0e3d..92c776c1e8 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -626,7 +626,7 @@ static const int included_patches[] = { // 329, // 328, // 327, - // 326, + 326, 325, // 324, // 323, 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() |