diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-11-03 19:00:14 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-11-03 19:00:14 +0100 |
commit | bd9a0c611ce08f8dce033537bc2f110987b99802 (patch) | |
tree | f51342ca120170a54ea5d75460e2042f95fbe250 /src/testdir | |
parent | 4dbc2627641a6b950c30c31cbf7b7e6c36da1927 (diff) | |
download | vim-git-bd9a0c611ce08f8dce033537bc2f110987b99802.tar.gz |
patch 8.1.0505: filter command test may fail if helplang is not setv8.1.0505
Problem: Filter command test may fail if helplang is not set.
Solution: Set 'helplang' for the test. (James McCoy, closes #3591)
Diffstat (limited to 'src/testdir')
-rw-r--r-- | src/testdir/test_filter_cmd.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/testdir/test_filter_cmd.vim b/src/testdir/test_filter_cmd.vim index 3d802f953..6f40a902e 100644 --- a/src/testdir/test_filter_cmd.vim +++ b/src/testdir/test_filter_cmd.vim @@ -105,8 +105,11 @@ func Test_filter_commands() unlet test_filter_c " Test filtering :set command + let helplang=&helplang + set helplang=en let res = join(split(execute("filter /^help/ set"), "\n")[1:], " ") call assert_match('^\s*helplang=\w*$', res) + let &helplang=helplang " Test filtering :llist command call setloclist(0, [{"filename": "/path/vim.c"}, {"filename": "/path/vim.h"}, {"module": "Main.Test"}]) |