From 73b058bcab03e19e30faed58e497df81eff17573 Mon Sep 17 00:00:00 2001 From: Luke Sneeringer Date: Wed, 10 Sep 2014 15:12:17 -0500 Subject: [PATCH] Remove MIDDLEWARE_CLASSES from UI test. --- awx/api/tests/job_tasks.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/awx/api/tests/job_tasks.py b/awx/api/tests/job_tasks.py index 733d7e1eab..c836d7756f 100644 --- a/awx/api/tests/job_tasks.py +++ b/awx/api/tests/job_tasks.py @@ -15,14 +15,13 @@ import mock from awx.api.views import JobJobTasksList from awx.main.models import Job, JobTemplate, JobEvent -from awx.main.tests.jobs import BaseJobTestMixin, MIDDLEWARE_CLASSES +from awx.main.tests.jobs import BaseJobTestMixin @override_settings(CELERY_ALWAYS_EAGER=True, CELERY_EAGER_PROPAGATES_EXCEPTIONS=True, CALLBACK_CONSUMER_PORT='', - ANSIBLE_TRANSPORT='local', - MIDDLEWARE_CLASSES=MIDDLEWARE_CLASSES) + ANSIBLE_TRANSPORT='local') class JobTasksTests(BaseJobTestMixin, LiveServerTestCase): """A set of tests to ensure that the job_tasks endpoint, available at `/api/v1/jobs/{id}/job_tasks/`, works as expected.