diff options
author | Scott Prager <splinterofchaos@gmail.com> | 2014-11-06 17:58:31 -0500 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-11-07 13:34:56 -0300 |
commit | ea3296ad856fcf6124fbac9c05888745caa5bbab (patch) | |
tree | d6d72199053903f3aafe0a6752c1bbb75a99a0c9 | |
parent | fd36dc208e2ded0173209163424cbadc15329558 (diff) | |
download | rneovim-ea3296ad856fcf6124fbac9c05888745caa5bbab.tar.gz rneovim-ea3296ad856fcf6124fbac9c05888745caa5bbab.tar.bz2 rneovim-ea3296ad856fcf6124fbac9c05888745caa5bbab.zip |
job_spec: Fix bad test.
-rw-r--r-- | test/functional/job/job_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/job/job_spec.lua b/test/functional/job/job_spec.lua index 744e165b61..85a1e92e38 100644 --- a/test/functional/job/job_spec.lua +++ b/test/functional/job/job_spec.lua @@ -82,7 +82,7 @@ describe('jobs', function() it('will not allow jobsend/stop on a non-existent job', function() eq(false, pcall(eval, "jobsend(-1, 'lol')")) - eq(false, pcall(eval, "jobstop(-1, 'lol')")) + eq(false, pcall(eval, "jobstop(-1)")) end) it('will not allow jobstop twice on the same job', function() |