aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2021-09-18 17:14:25 +0200
committerGitHub <noreply@github.com>2021-09-18 17:14:25 +0200
commit6cad86fffdb91d3997a707ff6adb0b5991587b3e (patch)
treeb929329658316d6a8a7aead01f0b701c0e278fca /src/nvim/testdir
parent8ef2b56cac895c151345cf0ff0a97456c0a7fdd2 (diff)
parenta860f7880fd5d5cef5299ff8d450ac037bee2300 (diff)
downloadrneovim-6cad86fffdb91d3997a707ff6adb0b5991587b3e.tar.gz
rneovim-6cad86fffdb91d3997a707ff6adb0b5991587b3e.tar.bz2
rneovim-6cad86fffdb91d3997a707ff6adb0b5991587b3e.zip
Merge pull request #15632 from bfredl/rtptest
runtime: always use DIP_START and remove duplication of start packages in &rtp
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r--src/nvim/testdir/test_startup.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_startup.vim b/src/nvim/testdir/test_startup.vim
index e0dc0e0075..daebe25466 100644
--- a/src/nvim/testdir/test_startup.vim
+++ b/src/nvim/testdir/test_startup.vim
@@ -102,7 +102,7 @@ func Test_pack_in_rtp_when_plugins_run()
if RunVim(before, after, '')
let lines = filter(readfile('Xtestout'), '!empty(v:val)')
- call assert_match('Xhere[/\\]pack[/\\]foo[/\\]start[/\\]foobar', get(lines, 0))
+ call assert_match('runtimepath=Xhere', get(lines, 0))
call assert_match('autoloaded foo', get(lines, 1))
endif