From d216314e5bc223bad49b1ae49011194f8edf60f2 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sat, 2 Jan 2021 18:46:39 -0500 Subject: vim-patch:8.2.0458: missing feature check in test function Problem: Missing feature check in test function. Solution: Add check commands. https://github.com/vim/vim/commit/bea9023d4260349c130faf447aa8d4cbadeffab2 --- src/nvim/testdir/test_excmd.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/nvim/testdir/test_excmd.vim b/src/nvim/testdir/test_excmd.vim index 28ac2f65f6..62c35c9f53 100644 --- a/src/nvim/testdir/test_excmd.vim +++ b/src/nvim/testdir/test_excmd.vim @@ -99,6 +99,9 @@ func Test_confirm_cmd() endfunc func Test_confirm_cmd_cancel() + CheckNotGui + CheckRunVimInTerminal + " Test for closing a window with a modified buffer let buf = RunVimInTerminal('', {'rows': 20}) call term_sendkeys(buf, ":set nomore\n") -- cgit