diff options
author | Daniel Hahler <git@thequod.de> | 2019-10-18 04:46:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-18 04:46:30 +0200 |
commit | 4bbad5481773ac2a273a41a9fe8035ca57e03cd8 (patch) | |
tree | bc35ec0b5848236bd8f0fb049c56a73913fec407 /test/functional/core/job_spec.lua | |
parent | 0785f8e8b11b2fa290cfbc0604d570f49b954ba6 (diff) | |
download | rneovim-4bbad5481773ac2a273a41a9fe8035ca57e03cd8.tar.gz rneovim-4bbad5481773ac2a273a41a9fe8035ca57e03cd8.tar.bz2 rneovim-4bbad5481773ac2a273a41a9fe8035ca57e03cd8.zip |
tests: fix non-controversial misuse of `pending` (#11247)
Ref: https://github.com/neovim/neovim/pull/11184
Diffstat (limited to 'test/functional/core/job_spec.lua')
-rw-r--r-- | test/functional/core/job_spec.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua index d4ce690867..d285008a33 100644 --- a/test/functional/core/job_spec.lua +++ b/test/functional/core/job_spec.lua @@ -202,8 +202,7 @@ describe('jobs', function() if helpers.isCI('travis') and os.getenv('CC') == 'gcc-4.9' and helpers.is_os('mac') then -- XXX: Hangs Travis macOS since e9061117a5b8f195c3f26a5cb94e18ddd7752d86. - pending("[Hangs on Travis macOS. #5002]", function() end) - return + pending("[Hangs on Travis macOS. #5002]") end nvim('command', "let j = jobstart(['cat', '-'], g:job_opts)") |