From ea3296ad856fcf6124fbac9c05888745caa5bbab Mon Sep 17 00:00:00 2001 From: Scott Prager Date: Thu, 6 Nov 2014 17:58:31 -0500 Subject: job_spec: Fix bad test. --- test/functional/job/job_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- cgit