aboutsummaryrefslogtreecommitdiff
path: root/test/functional/vimscript/execute_spec.lua
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-05-22 14:32:38 +0200
committerGitHub <noreply@github.com>2022-05-22 14:32:38 +0200
commite7b3fd8ad603ba064ce9457a8866430c436c3737 (patch)
tree20c19661b5b04bf618d1b5b9e5cc39fc3a13189a /test/functional/vimscript/execute_spec.lua
parent2cab6bea09e090f825f9a677e1ec93d214621534 (diff)
parent3c1bc75447841a2cc4d0222657556aa172c91915 (diff)
downloadrneovim-e7b3fd8ad603ba064ce9457a8866430c436c3737.tar.gz
rneovim-e7b3fd8ad603ba064ce9457a8866430c436c3737.tar.bz2
rneovim-e7b3fd8ad603ba064ce9457a8866430c436c3737.zip
Merge pull request #18681 from bfredl/uitest
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>]])