aboutsummaryrefslogtreecommitdiff
path: root/test/functional/eval/executable_spec.lua
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-07-03 12:56:03 +0200
committerGitHub <noreply@github.com>2019-07-03 12:56:03 +0200
commit0dc73b87f10b67f9a8648cbf8936ba5f76a41def (patch)
treef4ff0d31347c5860a720f6ace39a63a9c07fc24e /test/functional/eval/executable_spec.lua
parente48257e63e027584aec13674489490ee60112737 (diff)
downloadrneovim-0dc73b87f10b67f9a8648cbf8936ba5f76a41def.tar.gz
rneovim-0dc73b87f10b67f9a8648cbf8936ba5f76a41def.tar.bz2
rneovim-0dc73b87f10b67f9a8648cbf8936ba5f76a41def.zip
tests: executable_spec: keep assertion (#10408)
It was moved to become pending in 18127f64c, but the assertion should be kept.
Diffstat (limited to 'test/functional/eval/executable_spec.lua')
-rw-r--r--test/functional/eval/executable_spec.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/eval/executable_spec.lua b/test/functional/eval/executable_spec.lua
index 6a95128a4d..ca82c8c9da 100644
--- a/test/functional/eval/executable_spec.lua
+++ b/test/functional/eval/executable_spec.lua
@@ -29,6 +29,8 @@ describe('executable()', function()
local is_executable = call('executable', sibling_exe)
if iswin() and is_executable ~= expected then
pending('XXX: sometimes fails on AppVeyor')
+ else
+ eq(expected, is_executable)
end
end)