From 91f539db6f627cdf58c376ea3f8d5bea78545b5a Mon Sep 17 00:00:00 2001 From: JackSteele24 Date: Wed, 3 Apr 2024 14:59:10 -0400 Subject: [PATCH] fix: Removing old implementation from the testing --- lms/djangoapps/course_home_api/outline/tests/test_view.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/course_home_api/outline/tests/test_view.py b/lms/djangoapps/course_home_api/outline/tests/test_view.py index 1666b6df5826..6995f5c23b9d 100644 --- a/lms/djangoapps/course_home_api/outline/tests/test_view.py +++ b/lms/djangoapps/course_home_api/outline/tests/test_view.py @@ -300,7 +300,7 @@ def test_assignment(self): assert response.status_code == 200 exam_data = response.data['course_blocks']['blocks'][str(sequential.location)] - assert exam_data['display_name'] == 'Test (2 Questions)' + assert exam_data['display_name'] == 'Test' assert exam_data['icon'] == 'fa-pencil-square-o' ungraded_data = response.data['course_blocks']['blocks'][str(sequential2.location)]