tests: use Vim's version for patch 8.1.0005

Not sure what happened in daca22f5b / #8821, but Vim used assert_match /
no expand in vim/vim@d19b23415 (8.1.0005) already.
This commit is contained in:
Daniel Hahler 2019-06-11 19:24:57 +02:00
parent 213b6b5c28
commit 08ed3d6523

View File

@ -33,9 +33,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(expand('^.*runtime/compiler/ant.vim$'), a[0]) call assert_match('^.*runtime/compiler/ant.vim$', a[0])
call assert_match(expand('^.*runtime/compiler/bcc.vim$'), a[1]) call assert_match('^.*runtime/compiler/bcc.vim$', a[1])
call assert_match(expand('^.*runtime/compiler/xmlwf.vim$'), a[-1]) call assert_match('^.*runtime/compiler/xmlwf.vim$', a[-1])
endfunc endfunc
func Test_compiler_completion() func Test_compiler_completion()