From 0fb2160d0f26f5b76ce7d2a99f79a9dbf729b283 Mon Sep 17 00:00:00 2001 From: Luke Sneeringer Date: Thu, 19 Jun 2014 14:12:49 -0500 Subject: [PATCH] Fix the job_tasks test. --- awx/api/tests/job_tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/api/tests/job_tasks.py b/awx/api/tests/job_tasks.py index 17313e1cb2..733d7e1eab 100644 --- a/awx/api/tests/job_tasks.py +++ b/awx/api/tests/job_tasks.py @@ -50,7 +50,7 @@ class JobTasksTests(BaseJobTestMixin, LiveServerTestCase): # Test to make sure we got back what we expected. result = response['results'][0] - self.assertEqual(result['host_count'], 1) - self.assertEqual(result['changed_count'], 1) + self.assertEqual(result['host_count'], 7) + self.assertEqual(result['changed_count'], 7) self.assertFalse(result['failed']) self.assertTrue(result['changed'])