diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-01 17:06:25 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-01 17:06:25 +0200 |
commit | 2d247849ce612050ba1085df806746b23be1f0a3 (patch) | |
tree | 6bcd95836916f829401adc0d0878139fe3ae766d /src/testdir/test_execute_func.vim | |
parent | c47ed44be76a520ded90913099771999c8a79eeb (diff) | |
download | vim-git-2d247849ce612050ba1085df806746b23be1f0a3.tar.gz |
patch 8.1.1440: win_execute() test failsv8.1.1440
Problem: Win_execute() test fails.
Solution: Adjust the expected error number. Move to popup test.
Diffstat (limited to 'src/testdir/test_execute_func.vim')
-rw-r--r-- | src/testdir/test_execute_func.vim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/testdir/test_execute_func.vim b/src/testdir/test_execute_func.vim index 78561b3a9..81a67c035 100644 --- a/src/testdir/test_execute_func.vim +++ b/src/testdir/test_execute_func.vim @@ -94,8 +94,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 |