mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
tests: win: fix pathsep of :compiler paths
This commit is contained in:
parent
daca22f5b2
commit
5493139c9f
@ -28,9 +28,9 @@ endfunc
|
|||||||
|
|
||||||
func Test_compiler_without_arg()
|
func Test_compiler_without_arg()
|
||||||
let a=split(execute('compiler'))
|
let a=split(execute('compiler'))
|
||||||
call assert_match('^.*runtime/compiler/ant.vim$', a[0])
|
call assert_match(expand('^.*runtime/compiler/ant.vim$'), a[0])
|
||||||
call assert_match('^.*runtime/compiler/bcc.vim$', a[1])
|
call assert_match(expand('^.*runtime/compiler/bcc.vim$'), a[1])
|
||||||
call assert_match('^.*runtime/compiler/xmlwf.vim$', a[-1])
|
call assert_match(expand('^.*runtime/compiler/xmlwf.vim$'), a[-1])
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_compiler_completion()
|
func Test_compiler_completion()
|
||||||
|
Loading…
Reference in New Issue
Block a user