diff options
Diffstat (limited to 'test/functional/ex_cmds/script_spec.lua')
-rw-r--r-- | test/functional/ex_cmds/script_spec.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/ex_cmds/script_spec.lua b/test/functional/ex_cmds/script_spec.lua index 0ee25d802c..4e57d2755d 100644 --- a/test/functional/ex_cmds/script_spec.lua +++ b/test/functional/ex_cmds/script_spec.lua @@ -7,7 +7,7 @@ local clear = helpers.clear local dedent = helpers.dedent local source = helpers.source local exc_exec = helpers.exc_exec -local check_provider = helpers.check_provider +local missing_provider = helpers.missing_provider before_each(clear) @@ -61,9 +61,9 @@ describe('script_get-based command', function() test_garbage_exec('lua', true) -- Provider-based scripts - test_garbage_exec('ruby', check_provider('ruby')) - test_garbage_exec('python', check_provider('python')) - test_garbage_exec('python3', check_provider('python3')) + 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('tcl', false) |