diff options
author | Daniel Hahler <git@thequod.de> | 2019-07-03 12:56:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-03 12:56:03 +0200 |
commit | 0dc73b87f10b67f9a8648cbf8936ba5f76a41def (patch) | |
tree | f4ff0d31347c5860a720f6ace39a63a9c07fc24e /test/functional/eval/executable_spec.lua | |
parent | e48257e63e027584aec13674489490ee60112737 (diff) | |
download | rneovim-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.lua | 2 |
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) |