diff options
| author | Shougo <Shougo.Matsu@gmail.com> | 2022-01-31 23:06:46 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-31 15:06:46 +0100 |
| commit | f195345c936eaecf423ab79473003e1ab337a17d (patch) | |
| tree | f124e0bc7d3c6abfd4808627b36ce1ae8e33a603 /test/functional/fixtures | |
| parent | 2a58e62145d64245e23825ca717aecf8eaaaddad (diff) | |
| download | rneovim-f195345c936eaecf423ab79473003e1ab337a17d.tar.gz rneovim-f195345c936eaecf423ab79473003e1ab337a17d.tar.bz2 rneovim-f195345c936eaecf423ab79473003e1ab337a17d.zip | |
[RFC] fix: has('python') error (#17252)
* fix: has('python') error
* fix: functional tests
Diffstat (limited to 'test/functional/fixtures')
| -rw-r--r-- | test/functional/fixtures/autoload/provider/python3.vim (renamed from test/functional/fixtures/autoload/provider/python.vim) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/fixtures/autoload/provider/python.vim b/test/functional/fixtures/autoload/provider/python3.vim index d68360ac30..8ed4330a35 100644 --- a/test/functional/fixtures/autoload/provider/python.vim +++ b/test/functional/fixtures/autoload/provider/python3.vim @@ -1,6 +1,6 @@ " Dummy test provider, missing this required variable: " let g:loaded_brokenenabled_provider = 0 -function! provider#python#Call(method, args) +function! provider#python3#Call(method, args) return 42 endfunction |