vim-patch:8.1.0517: Test_window_split_edit_alternate() fails on AppVeyor

Problem:    Test_window_split_edit_alternate() fails on AppVeyor.
Solution:   Disable the failing part for now.
d42333d8e9
This commit is contained in:
Jan Edmund Lazo 2019-09-24 23:28:30 -04:00
parent 17e96d96ba
commit 14f3287b98
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15

View File

@ -139,10 +139,13 @@ func Test_window_split_edit_alternate()
call assert_equal(l:nr2, winbufnr(2))
only
" FIXME: this currently fails on AppVeyor, but passes locally
if !has('win32')
" Test the Normal mode command.
call feedkeys("\<C-W>\<C-^>", 'tx')
call assert_equal(l:nr2, winbufnr(1))
call assert_equal(l:nr1, winbufnr(2))
endif
%bw!
endfunc