Skip to content

Commit 24f8f54

Browse files
committed
patch 8.0.0326: packadd test uses wrong directory name
Problem: Packadd test uses wrong directory name. Solution: Use the variable name value. (Hirohito Higashi)
1 parent 913727e commit 24f8f54

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/testdir/test_packadd.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func Test_packadd_symlink_dir()
7373
endif
7474
let top2_dir = s:topdir . '/Xdir2'
7575
let real_dir = s:topdir . '/Xsym'
76-
silent !ln -s real_dir top2_dir
76+
exec "silent !ln -s" real_dir top2_dir
7777
let &rtp = top2_dir . ',' . top2_dir . '/after'
7878
let &packpath = &rtp
7979

@@ -98,7 +98,7 @@ func Test_packadd_symlink_dir()
9898

9999
set rtp&
100100
let rtp = &rtp
101-
silent !rm top2_dir
101+
exec "silent !rm" top2_dir
102102
endfunc
103103

104104
" Check command-line completion for 'packadd'

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
326,
767769
/**/
768770
325,
769771
/**/

0 commit comments

Comments
 (0)