aboutsummaryrefslogtreecommitdiff
path: root/test/functional/vimscript/execute_spec.lua
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-05-21 23:07:34 +0200
committerbfredl <bjorn.linse@gmail.com>2022-05-21 23:07:34 +0200
commit3c1bc75447841a2cc4d0222657556aa172c91915 (patch)
treea7dc534297fc33875831958c7a6dac363ab069d1 /test/functional/vimscript/execute_spec.lua
parent1f1a65a9e4c602cd80458b213c28eadbdb5b1de1 (diff)
downloadrneovim-3c1bc75447841a2cc4d0222657556aa172c91915.tar.gz
rneovim-3c1bc75447841a2cc4d0222657556aa172c91915.tar.bz2
rneovim-3c1bc75447841a2cc4d0222657556aa172c91915.zip
fix(tests): fix some screen.lua warnings
Diffstat (limited to 'test/functional/vimscript/execute_spec.lua')
-rw-r--r--test/functional/vimscript/execute_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/vimscript/execute_spec.lua b/test/functional/vimscript/execute_spec.lua
index e21c71dc7f..a733b098f5 100644
--- a/test/functional/vimscript/execute_spec.lua
+++ b/test/functional/vimscript/execute_spec.lua
@@ -153,7 +153,7 @@ describe('execute()', function()
function! Test3()
echo 1234
let x = execute('echoerr "abcdef"', 'silent!')
- echon 'ABCD'
+ echon 'ABCDXZYZ'
endfunction
" test 4: silenced echoerr goes as usual
@@ -214,7 +214,7 @@ describe('execute()', function()
~ |
~ |
~ |
- 1234ABCD |
+ 1234ABCDXZYZ |
]])
feed([[:call Test4()<cr>]])