diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-06-06 05:22:55 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-06-06 22:43:47 -0400 |
commit | 7d345a7294a24e8270bf608dd87d1ebd8c897432 (patch) | |
tree | 66bcde2ac08d3386ce48e233f8f2a797742514d4 | |
parent | fb2b0fa5babe4d3f68012c12345ed32e82584c3b (diff) | |
download | rneovim-7d345a7294a24e8270bf608dd87d1ebd8c897432.tar.gz rneovim-7d345a7294a24e8270bf608dd87d1ebd8c897432.tar.bz2 rneovim-7d345a7294a24e8270bf608dd87d1ebd8c897432.zip |
vim-patch:8.0.1784: gvim test gets stuck in dialog
Problem: Gvim test gets stuck in dialog.
Solution: Rename the file used.
https://github.com/vim/vim/commit/bc7845da935c0707e119812077cecd6cfb5a65e2
-rw-r--r-- | src/nvim/testdir/test_quickfix.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/testdir/test_quickfix.vim b/src/nvim/testdir/test_quickfix.vim index f775b77ca0..12cd07a772 100644 --- a/src/nvim/testdir/test_quickfix.vim +++ b/src/nvim/testdir/test_quickfix.vim @@ -1139,18 +1139,18 @@ func Test_efm2() " Test for %o set efm=%f(%o):%l\ %m - cgetexpr ['Xtestfile(Language.PureScript.Types):20 Error'] - call writefile(['Line1'], 'Xtestfile') + cgetexpr ['Xotestfile(Language.PureScript.Types):20 Error'] + call writefile(['Line1'], 'Xotestfile') let l = getqflist() call assert_equal(1, len(l), string(l)) call assert_equal('Language.PureScript.Types', l[0].module) copen call assert_equal('Language.PureScript.Types|20| Error', getline(1)) call feedkeys("\<CR>", 'xn') - call assert_equal('Xtestfile', expand('%:t')) + call assert_equal('Xotestfile', expand('%:t')) cclose bd - call delete("Xtestfile") + call delete("Xotestfile") " The following sequence of commands used to crash Vim set efm=%W%m |