patch 8.2.0162: balloon test fails in the GUI
Problem: Balloon test fails in the GUI.
Solution: Skip test in the GUI.
diff --git a/src/testdir/test_functions.vim b/src/testdir/test_functions.vim
index 1d18190..c6088f3 100644
--- a/src/testdir/test_functions.vim
+++ b/src/testdir/test_functions.vim
@@ -1147,7 +1147,9 @@
if has('balloon_eval')
" This won't do anything but must not crash either.
call balloon_show('hi!')
- call balloon_show(range(3))
+ if !has('gui_running')
+ call balloon_show(range(3))
+ endif
endif
endfunc