From 8154edf00cb245e370100da7e5ec9ebb0ad5fe2d Mon Sep 17 00:00:00 2001 From: Chris Church Date: Sun, 11 May 2014 23:06:31 -0400 Subject: [PATCH] AC-1262 Fix broken job template test. --- awx/main/tests/jobs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/main/tests/jobs.py b/awx/main/tests/jobs.py index e74ca55a32..c5c89751d7 100644 --- a/awx/main/tests/jobs.py +++ b/awx/main/tests/jobs.py @@ -460,9 +460,9 @@ class JobTemplateTest(BaseJobTestMixin, django.test.TestCase): 'modified', 'name', 'description', 'job_type', 'inventory', 'project', 'playbook', 'credential', 'cloud_credential', 'forks', 'limit', 'verbosity', - 'extra_vars', 'job_tags', 'host_config_key', - 'status', 'next_job_run', 'has_schedules', - 'last_job_run', 'last_job_failed') + 'extra_vars', 'vars_prompt_on_launch', 'job_tags', + 'host_config_key', 'status', 'next_job_run', + 'has_schedules', 'last_job_run', 'last_job_failed') def test_get_job_template_list(self): url = reverse('api:job_template_list')