Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
k-takata committed Aug 12, 2020
1 parent bcebe54 commit d3742ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/testdir/test_options.vim
Original file line number Diff line number Diff line change
Expand Up @@ -281,11 +281,11 @@ func Test_set_completion()
" Expand directories.
call feedkeys(":set cdpath=./\<C-A>\<C-B>\"\<CR>", 'tx')
call assert_match(' ./samples/ ', @:)
call assert_notmatch(' ./small.vim ', @:)
call assert_notmatch(' ./summarize.vim ', @:)

" Expand files and directories.
call feedkeys(":set tags=./\<C-A>\<C-B>\"\<CR>", 'tx')
call assert_match(' ./samples/.* ./small.vim', @:)
call assert_match(' ./samples/.* ./summarize.vim', @:)

call feedkeys(":set tags=./\\\\ dif\<C-A>\<C-B>\"\<CR>", 'tx')
call assert_equal('"set tags=./\\ diff diffexpr diffopt', @:)
Expand Down

0 comments on commit d3742ee

Please sign in to comment.