aboutsummaryrefslogtreecommitdiff
path: root/test/functional/provider/perl_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/provider/perl_spec.lua')
-rw-r--r--test/functional/provider/perl_spec.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/provider/perl_spec.lua b/test/functional/provider/perl_spec.lua
index 4c5c3ece15..ce92831f4c 100644
--- a/test/functional/provider/perl_spec.lua
+++ b/test/functional/provider/perl_spec.lua
@@ -9,7 +9,7 @@ local curbufmeths = helpers.curbufmeths
local insert = helpers.insert
local expect = helpers.expect
local feed = helpers.feed
-local iswin = helpers.iswin
+local is_os = helpers.is_os
local skip = helpers.skip
do
@@ -26,7 +26,7 @@ before_each(function()
end)
describe('legacy perl provider', function()
- skip(iswin())
+ skip(is_os('win'))
it('feature test', function()
eq(1, eval('has("perl")'))
@@ -70,7 +70,7 @@ describe('legacy perl provider', function()
end)
describe('perl provider', function()
- skip(iswin())
+ skip(is_os('win'))
teardown(function ()
os.remove('Xtest-perl-hello.pl')
os.remove('Xtest-perl-hello-plugin.pl')