From d1aa0a254eba1c56544537401ab36c64d9a8ae24 Mon Sep 17 00:00:00 2001 From: David Ormsbee Date: Fri, 2 Nov 2012 17:21:00 -0400 Subject: [PATCH] Use one of our test courses when testing course permissions for the discussion client, because we now have course policy level overrides. --- lms/djangoapps/django_comment_client/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/django_comment_client/tests.py b/lms/djangoapps/django_comment_client/tests.py index 55f18de8ea..2f3126be2c 100644 --- a/lms/djangoapps/django_comment_client/tests.py +++ b/lms/djangoapps/django_comment_client/tests.py @@ -19,7 +19,7 @@ class PermissionsTestCase(TestCase): def setUp(self): - self.course_id = "MITx/6.002x/2012_Fall" + self.course_id = "edX/toy/2012_Fall" self.moderator_role = Role.objects.get_or_create(name="Moderator", course_id=self.course_id)[0] self.student_role = Role.objects.get_or_create(name="Student", course_id=self.course_id)[0]