Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common/djangoapps/student/tests/test_admin_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def test_username_is_readonly_for_user(self):

Changing the username is still possible using the database or from the model directly.

However, changing the username might cause issues with the logs and/or the cs_comments_service since it
However, changing the username might cause issues with the logs and/or the forum service since it
stores the username in a different database.
"""
request = Mock()
Expand Down
5 changes: 0 additions & 5 deletions lms/djangoapps/course_goals/tests/test_user_activity.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
from common.djangoapps.student.tests.factories import UserFactory
from common.djangoapps.util.testing import UrlResetMixin
from lms.djangoapps.course_goals.models import UserActivity
from openedx.core.djangoapps.django_comment_common.models import ForumsConfig
from openedx.features.course_experience import ENABLE_COURSE_GOALS

User = get_user_model()
Expand Down Expand Up @@ -53,10 +52,6 @@ def setUp(self):
self.request = RequestFactory().get('foo')
self.request.user = self.user

config = ForumsConfig.current()
config.enabled = True
config.save()

def test_mfe_tabs_call_user_activity(self):
'''
New style tabs call one of two metadata endpoints
Expand Down
Loading
Loading