diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-10-26 18:21:52 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-10-26 18:22:49 +0800 |
commit | a0ade77353f23a41e04ef20064577e14814fb386 (patch) | |
tree | 890fe2cd04d47fdcfbb87d12b468874e298d18c2 | |
parent | fed86bc78ae18eafd9fe247f7cc56ef3dcec6d09 (diff) | |
download | rneovim-a0ade77353f23a41e04ef20064577e14814fb386.tar.gz rneovim-a0ade77353f23a41e04ef20064577e14814fb386.tar.bz2 rneovim-a0ade77353f23a41e04ef20064577e14814fb386.zip |
vim-patch:8.2.0162: balloon test fails in the GUI
Problem: Balloon test fails in the GUI.
Solution: Skip test in the GUI.
https://github.com/vim/vim/commit/7d8ea0b24191d64155fcf9e8d2d2eefff91ae549
Co-authored-by: Bram Moolenaar <Bram@vim.org>
-rw-r--r-- | src/nvim/testdir/test_functions.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_functions.vim b/src/nvim/testdir/test_functions.vim index 7049602d98..50005c6c37 100644 --- a/src/nvim/testdir/test_functions.vim +++ b/src/nvim/testdir/test_functions.vim @@ -1320,6 +1320,9 @@ func Test_balloon_show() " This won't do anything but must not crash either. call balloon_show('hi!') + if !has('gui_running') + call balloon_show(range(3)) + endif endfunc func Test_shellescape() |