Skip to content

Commit

Permalink
patch 9.1.0342: tests: test_taglist fails when 'helplang' contains no…
Browse files Browse the repository at this point in the history
…n-english

Problem:  tests: test_taglist fails when 'helplang' contains non-english
Solution: Allow 1 or 2 tagfiles for now (Julio B)

related: #14312
closes: #14566

Signed-off-by: Julio B <julio.bacel@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
  • Loading branch information
julio-b authored and chrisbra committed Apr 16, 2024
1 parent 29269a7 commit ae7e61c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/testdir/test_taglist.vim
Expand Up @@ -100,7 +100,10 @@ func Test_tagfiles()

help
let tf = tagfiles()
call assert_equal(1, len(tf))
" if 'helplang includes another language, then we may find
" 2 tagfiles (e.g.: for EN and RU)
" we may need to adjust this, if further translated help files are included
call assert_inrange(1, 2, len(tf))
call assert_equal(fnamemodify(expand('$VIMRUNTIME/doc/tags'), ':p:gs?\\?/?'),
\ fnamemodify(tf[0], ':p:gs?\\?/?'))
helpclose
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -704,6 +704,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
342,
/**/
341,
/**/
Expand Down

0 comments on commit ae7e61c

Please sign in to comment.