diff options
-rw-r--r-- | src/nvim/testdir/test_python2.vim | 1 | ||||
-rw-r--r-- | src/nvim/testdir/test_python3.vim | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_python2.vim b/src/nvim/testdir/test_python2.vim index 647290e6b5..8d55b59c31 100644 --- a/src/nvim/testdir/test_python2.vim +++ b/src/nvim/testdir/test_python2.vim @@ -41,6 +41,7 @@ func Test_set_cursor() endfunc func Test_vim_function() + throw 'skipped: Nvim does not support vim.bindeval()' " Check creating vim.Function object py import vim diff --git a/src/nvim/testdir/test_python3.vim b/src/nvim/testdir/test_python3.vim index 26aaab31ed..cd07b0883f 100644 --- a/src/nvim/testdir/test_python3.vim +++ b/src/nvim/testdir/test_python3.vim @@ -41,6 +41,7 @@ func Test_set_cursor() endfunc func Test_vim_function() + throw 'skipped: Nvim does not support vim.bindeval()' " Check creating vim.Function object py3 import vim |