diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-03-23 20:54:32 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-03-23 20:54:32 +0100 |
commit | bad8804cdd739a5a7321b8411ad7fd4f45741b54 (patch) | |
tree | 5ebb0a983c9f0523f3c2a502f116955e8b67c670 /src/testdir/test_excmd.vim | |
parent | ab505b1a4868b3e21356f95a275537551700c955 (diff) | |
download | vim-git-bad8804cdd739a5a7321b8411ad7fd4f45741b54.tar.gz |
patch 8.2.0433: INT signal not properly testedv8.2.0433
Problem: INT signal not properly tested.
Solution: Add a test. Also clean up some unnecessary lines. (Dominique
Pelle, closes #5828)
Diffstat (limited to 'src/testdir/test_excmd.vim')
-rw-r--r-- | src/testdir/test_excmd.vim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/testdir/test_excmd.vim b/src/testdir/test_excmd.vim index 5dbb701b1..27fdd8835 100644 --- a/src/testdir/test_excmd.vim +++ b/src/testdir/test_excmd.vim @@ -255,7 +255,6 @@ func Test_confirm_cmd() call WaitForAssert({-> assert_match('^\[Y\]es, (N)o, (C)ancel: *$', \ term_getline(buf, 20))}, 1000) call term_sendkeys(buf, "N") - call term_sendkeys(buf, ":quit\n") call StopVimInTerminal(buf) call delete('foo') |