diff options
author | dundargoc <gocdundar@gmail.com> | 2024-01-07 13:05:03 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-01-22 22:36:40 +0100 |
commit | eb5d15e3838f53e2fcd25989c88db87458e9f984 (patch) | |
tree | de13432021adb8632ed61cd9bbe4270eaec0674c /test/functional/ex_cmds/script_spec.lua | |
parent | 13d50c3b13fb6f2bba948e50fefee451e0a90487 (diff) | |
download | rneovim-eb5d15e3838f53e2fcd25989c88db87458e9f984.tar.gz rneovim-eb5d15e3838f53e2fcd25989c88db87458e9f984.tar.bz2 rneovim-eb5d15e3838f53e2fcd25989c88db87458e9f984.zip |
refactor: rewrite python provider in lua
Diffstat (limited to 'test/functional/ex_cmds/script_spec.lua')
-rw-r--r-- | test/functional/ex_cmds/script_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ex_cmds/script_spec.lua b/test/functional/ex_cmds/script_spec.lua index ebdaa0f656..4c963c5da7 100644 --- a/test/functional/ex_cmds/script_spec.lua +++ b/test/functional/ex_cmds/script_spec.lua @@ -96,7 +96,7 @@ describe('script_get-based command', function() -- Provider-based scripts test_garbage_exec('ruby', not missing_provider('ruby')) - test_garbage_exec('python3', not missing_provider('python3')) + test_garbage_exec('python3', not missing_provider('python')) -- Missing scripts test_garbage_exec('python', false) |