From 77e4d33770ea876e349a79cd8eec9ab7e522ec58 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Wed, 19 Mar 2014 11:26:22 -0400 Subject: [PATCH] Make sure we are calling signal_start in unit tests --- awx/main/tests/jobs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tests/jobs.py b/awx/main/tests/jobs.py index 98e3b774d7..a6a810acd5 100644 --- a/awx/main/tests/jobs.py +++ b/awx/main/tests/jobs.py @@ -929,7 +929,7 @@ class JobStartCancelTest(BaseJobTestMixin, django.test.LiveServerTestCase): # Start/run a job and then access its results via the API. #job = self.job_ops_east_run job = self.make_job(self.jt_ops_east_run, self.user_sue, 'new') - job.start() + job.signal_start() # Check that the job detail has been updated. url = reverse('api:job_detail', args=(job.pk,))