aboutsummaryrefslogtreecommitdiff
path: root/test/functional/eval/executable_spec.lua
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-07-07 13:05:52 +0200
committerJustin M. Keyes <justinkz@gmail.com>2019-07-07 13:05:52 +0200
commitb53c483a4a6db91aad621d5f404cc6e930b434de (patch)
treed8ede43b44f1a7e7d4e7519ae8882aed0982b2ea /test/functional/eval/executable_spec.lua
parenteb2509aef9faa428112b5da0f4e5730962def7af (diff)
downloadrneovim-b53c483a4a6db91aad621d5f404cc6e930b434de.tar.gz
rneovim-b53c483a4a6db91aad621d5f404cc6e930b434de.tar.bz2
rneovim-b53c483a4a6db91aad621d5f404cc6e930b434de.zip
tests: executable_spec: enable pending test #10443
Should hopefully work now after efc6d9951b.
Diffstat (limited to 'test/functional/eval/executable_spec.lua')
-rw-r--r--test/functional/eval/executable_spec.lua7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/functional/eval/executable_spec.lua b/test/functional/eval/executable_spec.lua
index ca82c8c9da..c8170076cc 100644
--- a/test/functional/eval/executable_spec.lua
+++ b/test/functional/eval/executable_spec.lua
@@ -26,12 +26,7 @@ describe('executable()', function()
eq('arg1=lemon;arg2=sky;arg3=tree;',
call('system', sibling_exe..' lemon sky tree'))
end
- 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
+ eq(expected, call('executable', sibling_exe))
end)
describe('exec-bit', function()