aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-01-29 20:30:48 -0500
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-01-29 20:31:16 -0500
commitf719b8898ba8aa18f0411be1924eea132a3b103e (patch)
treedaf79cba6bc169353a9329d1192e4d3771801c2f
parentca08d5c19117aa6a9b2ec288903e46823348ad07 (diff)
downloadrneovim-f719b8898ba8aa18f0411be1924eea132a3b103e.tar.gz
rneovim-f719b8898ba8aa18f0411be1924eea132a3b103e.tar.bz2
rneovim-f719b8898ba8aa18f0411be1924eea132a3b103e.zip
vim-patch:8.1.0446: options test fails in the GUI
Problem: Options test fails in the GUI. Solution: Don't try changing 'term' in the GUI. https://github.com/vim/vim/commit/4f888757257795969f2ab2e6fc3544a5bef3cdea
-rw-r--r--src/nvim/testdir/test_options.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_options.vim b/src/nvim/testdir/test_options.vim
index f9e4c2af85..29d391c232 100644
--- a/src/nvim/testdir/test_options.vim
+++ b/src/nvim/testdir/test_options.vim
@@ -279,6 +279,9 @@ endfunc
" Must be executed before other tests that set 'term'.
func Test_000_term_option_verbose()
+ if has('nvim') || has('gui_running')
+ return
+ endif
let verb_cm = execute('verbose set t_cm')
call assert_notmatch('Last set from', verb_cm)