aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_system.vim
diff options
context:
space:
mode:
authorSean Dewar <seandewar@users.noreply.github.com>2021-08-06 18:10:30 +0100
committerSean Dewar <seandewar@users.noreply.github.com>2021-08-12 22:35:20 +0100
commitaa2dc8b7b4e0e86c9102f2df6b670317c5693657 (patch)
tree669a96d841cc4ab90c83bbb1b86ed5cc38013c3b /src/nvim/testdir/test_system.vim
parent003c8acc8a9863932430bfb51bee8403b964c19b (diff)
downloadrneovim-aa2dc8b7b4e0e86c9102f2df6b670317c5693657.tar.gz
rneovim-aa2dc8b7b4e0e86c9102f2df6b670317c5693657.tar.bz2
rneovim-aa2dc8b7b4e0e86c9102f2df6b670317c5693657.zip
vim-patch:8.1.1809: more functions can be used as a method
Problem: More functions can be used as a method. Solution: Add has_key(), split(), str2list(), etc. https://github.com/vim/vim/commit/a74e4946de074d2916e3d6004f7fa1810d12dda9
Diffstat (limited to 'src/nvim/testdir/test_system.vim')
-rw-r--r--src/nvim/testdir/test_system.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_system.vim b/src/nvim/testdir/test_system.vim
index 6bbe714d19..7b8ee778cc 100644
--- a/src/nvim/testdir/test_system.vim
+++ b/src/nvim/testdir/test_system.vim
@@ -7,10 +7,10 @@ func Test_System()
if !executable('echo') || !executable('cat') || !executable('wc')
return
endif
- let out = system('echo 123')
+ let out = 'echo 123'->system()
call assert_equal("123\n", out)
- let out = systemlist('echo 123')
+ let out = 'echo 123'->systemlist()
if &shell =~# 'cmd.exe$'
call assert_equal(["123\r"], out)
else