diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-05-21 23:07:34 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2022-05-21 23:07:34 +0200 |
commit | 3c1bc75447841a2cc4d0222657556aa172c91915 (patch) | |
tree | a7dc534297fc33875831958c7a6dac363ab069d1 /test/functional/vimscript/execute_spec.lua | |
parent | 1f1a65a9e4c602cd80458b213c28eadbdb5b1de1 (diff) | |
download | rneovim-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.lua | 4 |
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>]]) |