diff --git a/lms/djangoapps/discussion/rest_api/tests/test_views_v2.py b/lms/djangoapps/discussion/rest_api/tests/test_views_v2.py index 2351d92ee6..4247cbcab0 100644 --- a/lms/djangoapps/discussion/rest_api/tests/test_views_v2.py +++ b/lms/djangoapps/discussion/rest_api/tests/test_views_v2.py @@ -215,7 +215,6 @@ class ThreadViewSetPartialUpdateTest( "anonymous_to_peers": False, "closed": False, "pinned": False, - "read": True, "editing_user_id": str(self.user.id), } self.check_mock_called_with("update_thread", -1, **params) diff --git a/openedx/core/djangoapps/django_comment_common/comment_client/models.py b/openedx/core/djangoapps/django_comment_common/comment_client/models.py index 88606b999b..a243db5c76 100644 --- a/openedx/core/djangoapps/django_comment_common/comment_client/models.py +++ b/openedx/core/djangoapps/django_comment_common/comment_client/models.py @@ -287,7 +287,6 @@ class Model: "close_reason_code": request_params.get("close_reason_code"), "closing_user_id": request_params.get("closing_user_id"), "endorsed": request_params.get("endorsed"), - "read": request_params.get("read"), } request_data = {k: v for k, v in request_data.items() if v is not None} response = forum_api.update_thread(**request_data)