diff options
Diffstat (limited to 'src/nvim/testdir/test_python2.vim')
| -rw-r--r-- | src/nvim/testdir/test_python2.vim | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/src/nvim/testdir/test_python2.vim b/src/nvim/testdir/test_python2.vim index fb98c1eda7..63c38cd5d1 100644 --- a/src/nvim/testdir/test_python2.vim +++ b/src/nvim/testdir/test_python2.vim @@ -13,12 +13,15 @@ func Test_pydo() pydo vim.command("%d_") bwipe! - " Check switching to another buffer does not trigger ml_get error. - new - let wincount = winnr('$') - call setline(1, ['one', 'two', 'three']) - pydo vim.command("new") - call assert_equal(wincount + 1, winnr('$')) - bwipe! - bwipe! + " Disabled until neovim/neovim#8554 is resolved + if 0 + " Check switching to another buffer does not trigger ml_get error. + new + let wincount = winnr('$') + call setline(1, ['one', 'two', 'three']) + pydo vim.command("new") + call assert_equal(wincount + 1, winnr('$')) + bwipe! + bwipe! + endif endfunc |