From b53c483a4a6db91aad621d5f404cc6e930b434de Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sun, 7 Jul 2019 13:05:52 +0200 Subject: [PATCH] tests: executable_spec: enable pending test #10443 Should hopefully work now after efc6d9951b. --- test/functional/eval/executable_spec.lua | 7 +------ 1 file changed, 1 insertion(+), 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()