1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 01:21:21 +03:00

Make sure we are calling signal_start in unit tests

This commit is contained in:
Matthew Jones 2014-03-19 11:26:22 -04:00
parent 14e138a7bd
commit 77e4d33770

View File

@ -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,))