diff options
author | Daniel Hahler <git@thequod.de> | 2019-06-11 19:24:57 +0200 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2019-07-30 10:35:44 +0200 |
commit | 08ed3d652384b6e9430341c8f63f5355089859b1 (patch) | |
tree | 7ec3fcf74e31fc755e85a5381527046b09074b89 /src | |
parent | 213b6b5c28f069df3e37ddfb4692b22f26b831cb (diff) | |
download | rneovim-08ed3d652384b6e9430341c8f63f5355089859b1.tar.gz rneovim-08ed3d652384b6e9430341c8f63f5355089859b1.tar.bz2 rneovim-08ed3d652384b6e9430341c8f63f5355089859b1.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_compiler.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_compiler.vim b/src/nvim/testdir/test_compiler.vim index 4600a28da5..46c14d8bc3 100644 --- a/src/nvim/testdir/test_compiler.vim +++ b/src/nvim/testdir/test_compiler.vim @@ -33,9 +33,9 @@ endfunc func Test_compiler_without_arg() let a=split(execute('compiler')) - call assert_match(expand('^.*runtime/compiler/ant.vim$'), a[0]) - call assert_match(expand('^.*runtime/compiler/bcc.vim$'), a[1]) - call assert_match(expand('^.*runtime/compiler/xmlwf.vim$'), a[-1]) + call assert_match('^.*runtime/compiler/ant.vim$', a[0]) + call assert_match('^.*runtime/compiler/bcc.vim$', a[1]) + call assert_match('^.*runtime/compiler/xmlwf.vim$', a[-1]) endfunc func Test_compiler_completion() |