diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-01-29 20:22:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-29 20:22:25 +0100 |
commit | e0242c4a937be5b5a7eea21bfe780fb49216e2a2 (patch) | |
tree | 934cefaf8b9a44a18fd134ef11b27d74a32089b0 /test/functional/ex_cmds/script_spec.lua | |
parent | 4b719e4a16dfab0829d833ed8bbc102bf6c6b0b4 (diff) | |
parent | baec0d3152afeab3007ebb505f3fc274511db434 (diff) | |
download | rneovim-e0242c4a937be5b5a7eea21bfe780fb49216e2a2.tar.gz rneovim-e0242c4a937be5b5a7eea21bfe780fb49216e2a2.tar.bz2 rneovim-e0242c4a937be5b5a7eea21bfe780fb49216e2a2.zip |
Merge pull request #17222 from bfredl/babajpy2
feat(provider)!: remove support for python2 and python3.[3-6]
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 0a772c559b..f249b9ba7c 100644 --- a/test/functional/ex_cmds/script_spec.lua +++ b/test/functional/ex_cmds/script_spec.lua @@ -62,10 +62,10 @@ describe('script_get-based command', function() -- Provider-based scripts test_garbage_exec('ruby', not missing_provider('ruby')) - test_garbage_exec('python', not missing_provider('python')) test_garbage_exec('python3', not missing_provider('python3')) -- Missing scripts + test_garbage_exec('python', false) test_garbage_exec('tcl', false) test_garbage_exec('mzscheme', false) test_garbage_exec('perl', false) |