diff options
author | jing <lhchenjw@gmail.com> | 2021-05-01 10:19:21 +0800 |
---|---|---|
committer | jing <lhchenjw@gmail.com> | 2021-05-06 23:45:16 +0800 |
commit | 3c00252248daf54c5ba4ef2c983256cf81c71ded (patch) | |
tree | 58d4f46e23c808ed77d89ef22371913368d22a4c | |
parent | 97abf8ee63994c19c2119e34bc7a7aa66457a7f2 (diff) | |
download | rneovim-3c00252248daf54c5ba4ef2c983256cf81c71ded.tar.gz rneovim-3c00252248daf54c5ba4ef2c983256cf81c71ded.tar.bz2 rneovim-3c00252248daf54c5ba4ef2c983256cf81c71ded.zip |
vim-patch:8.1.1440: win_execute() test fails
Problem: Win_execute() test fails.
Solution: Adjust the expected error number. Move to popup test.
https://github.com/vim/vim/commit/2d247849ce612050ba1085df806746b23be1f0a3
-rw-r--r-- | src/nvim/testdir/test_execute_func.vim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_execute_func.vim b/src/nvim/testdir/test_execute_func.vim index 98e0ea4e09..a634f9fc91 100644 --- a/src/nvim/testdir/test_execute_func.vim +++ b/src/nvim/testdir/test_execute_func.vim @@ -98,8 +98,6 @@ func Test_win_execute() let line = win_execute(popupwin, 'echo getline(1)') call assert_match('the popup win', line) - call assert_fails('call win_execute(popupwin, "bwipe!")', 'E937:') - call popup_close(popupwin) endif |