diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2021-10-17 22:04:53 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2021-10-17 22:04:53 +0800 |
| commit | 8a2489d0a43f6fe0bfd21840293610c44c88dcff (patch) | |
| tree | 944bc2cbe5bd74afa5eb5703f6af8e3a89091e27 /src/nvim/testdir/test_findfile.vim | |
| parent | 8727d38012f3c4c54380d554e2a8c53e8c50ad0d (diff) | |
| download | rneovim-8a2489d0a43f6fe0bfd21840293610c44c88dcff.tar.gz rneovim-8a2489d0a43f6fe0bfd21840293610c44c88dcff.tar.bz2 rneovim-8a2489d0a43f6fe0bfd21840293610c44c88dcff.zip | |
test: partially port Vim patches 8.1.2278 and 8.2.1432
Diffstat (limited to 'src/nvim/testdir/test_findfile.vim')
| -rw-r--r-- | src/nvim/testdir/test_findfile.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_findfile.vim b/src/nvim/testdir/test_findfile.vim index d92706dbe5..5a20475d3d 100644 --- a/src/nvim/testdir/test_findfile.vim +++ b/src/nvim/testdir/test_findfile.vim @@ -113,7 +113,7 @@ func Test_findfile() call assert_match('.*/Xdir1/bar', findfile('bar', '**;', 2)) bwipe! - exe 'cd ' . save_dir + call chdir(save_dir) call CleanFiles() let &path = save_path let &shellslash = save_shellslash @@ -171,7 +171,7 @@ func Test_finddir() call assert_match('.*/Xdir1/Xdir2', finddir('Xdir2', '**;', 2)) call assert_equal('Xdir3', finddir('Xdir3', '**;', 1)) - exe 'cd ' . save_dir + call chdir(save_dir) call CleanFiles() let &path = save_path let &shellslash = save_shellslash |