summaryrefslogtreecommitdiff
path: root/tests/modules/path/test.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/modules/path/test.lua')
-rw-r--r--tests/modules/path/test.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/modules/path/test.lua b/tests/modules/path/test.lua
index bba15810c..4217dec16 100644
--- a/tests/modules/path/test.lua
+++ b/tests/modules/path/test.lua
@@ -1,6 +1,6 @@
function test_splitenv_win(t)
if not is_host("windows") then
- return
+ return t:skip("wrong host platform")
end
t:are_equal(path.splitenv(""), {})
t:are_equal(path.splitenv("a"), {'a'})
@@ -14,7 +14,7 @@ end
function test_splitenv_unix(t)
if is_host("windows") then
- return
+ return t:skip("wrong host platform")
end
t:are_equal(path.splitenv(""), {})
t:are_equal(path.splitenv("a"), {'a'})