From 57fff655772618d780ae48e66b259baaffc2e2a2 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Mon, 17 Mar 2014 12:55:59 -0400 Subject: [PATCH] Missing semicolon --- awx/main/tests/projects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tests/projects.py b/awx/main/tests/projects.py index 06642163fc..32fa309bb6 100644 --- a/awx/main/tests/projects.py +++ b/awx/main/tests/projects.py @@ -674,7 +674,7 @@ class ProjectsTest(BaseTest): @override_settings(CELERY_ALWAYS_EAGER=True, CELERY_EAGER_PROPAGATES_EXCEPTIONS=True, ANSIBLE_TRANSPORT='local', - UNIT_TEST_IGNORE_TASK_WAIT=True + UNIT_TEST_IGNORE_TASK_WAIT=True, PROJECT_UPDATE_IDLE_TIMEOUT=60, PROJECT_UPDATE_VVV=True) class ProjectUpdatesTest(BaseTransactionTest):