From 771a55a631a420de08c2c2ea701cc645783b463e Mon Sep 17 00:00:00 2001 From: Victor Shnayder Date: Thu, 24 Jan 2013 18:35:34 -0500 Subject: [PATCH] turn forums on in test.py - this may not be a good idea, but needed for testing cohorts for now... --- lms/djangoapps/django_comment_client/tests.py | 1 - lms/envs/test.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lms/djangoapps/django_comment_client/tests.py b/lms/djangoapps/django_comment_client/tests.py index 8b306abeed..413a4fd4e7 100644 --- a/lms/djangoapps/django_comment_client/tests.py +++ b/lms/djangoapps/django_comment_client/tests.py @@ -3,7 +3,6 @@ from django.core.urlresolvers import reverse from django.test import TestCase from django.test.client import RequestFactory from django.conf import settings -from django.core.urlresolvers import reverse from mock import Mock diff --git a/lms/envs/test.py b/lms/envs/test.py index 8b546549eb..efb7312a46 100644 --- a/lms/envs/test.py +++ b/lms/envs/test.py @@ -17,7 +17,7 @@ from path import path MITX_FEATURES['DISABLE_START_DATES'] = True # Until we have discussion actually working in test mode, just turn it off -MITX_FEATURES['ENABLE_DISCUSSION_SERVICE'] = False +MITX_FEATURES['ENABLE_DISCUSSION_SERVICE'] = True # Need wiki for courseware views to work. TODO (vshnayder): shouldn't need it. WIKI_ENABLED = True