Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Jan 16, 2024
1 parent 8380056 commit d685588
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parse.vim
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ function! s:suite.load_toml() abort
call s:assert.equals(g:dein#_hook_add,
\ "\nlua <<EOF\nfoo\nEOF\nlet g:foo = 0")
call s:assert.equals(g:dein#ftplugin, #{
\ c: "let g:bar = 0\nlet g:bar = 0",
\ c: "let g:bar = 0\n\" Comment line\nlet g:bar = 0",
\ cpp: "lua <<EOF\nbar = 0\nEOF",
\ d: "lua <<EOF\nfoo = 0\nEOF",
\ d: "lua <<EOF\nfoo = 0\n-- Comment line\nEOF",
\ })
call s:assert.equals(g:dein#_multiple_plugins, [
\ #{ plugins: ['foo', 'bar'], hook_add: 'foo' },
Expand Down

0 comments on commit d685588

Please sign in to comment.