aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/old/testdir/test_cmdline.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/old/testdir/test_cmdline.vim b/test/old/testdir/test_cmdline.vim
index edc1d7439a..8210fc2310 100644
--- a/test/old/testdir/test_cmdline.vim
+++ b/test/old/testdir/test_cmdline.vim
@@ -431,11 +431,11 @@ func Test_highlight_completion()
" A cleared group does not show up in completions.
hi Anders ctermfg=green
- call assert_equal(['Aardig', 'Anders'], getcompletion('A', 'highlight'))
+ call assert_equal(['Aardig', 'Added', 'Anders'], getcompletion('A', 'highlight'))
hi clear Aardig
- call assert_equal(['Anders'], getcompletion('A', 'highlight'))
+ call assert_equal(['Added', 'Anders'], getcompletion('A', 'highlight'))
hi clear Anders
- call assert_equal([], getcompletion('A', 'highlight'))
+ call assert_equal(['Added'], getcompletion('A', 'highlight'))
endfunc
func Test_getcompletion()