diff --git a/cms/djangoapps/contentstore/rest_api/v1/views/tests/test_vertical_block.py b/cms/djangoapps/contentstore/rest_api/v1/views/tests/test_vertical_block.py index 6393f83897f7..b141bdd2dba2 100644 --- a/cms/djangoapps/contentstore/rest_api/v1/views/tests/test_vertical_block.py +++ b/cms/djangoapps/contentstore/rest_api/v1/views/tests/test_vertical_block.py @@ -196,16 +196,13 @@ def test_children_content(self): "user_partition_info": expected_user_partition_info, "user_partitions": expected_user_partitions, "actions": { - "can_manage_tags": True, "can_copy": True, "can_duplicate": True, "can_move": True, "can_manage_access": True, - "can_delete": True + "can_delete": True, "can_manage_tags": True, }, - "user_partition_info": expected_user_partition_info, - "user_partitions": expected_user_partitions, "validation_messages": [], "render_error": "", }, @@ -216,7 +213,6 @@ def test_children_content(self): "user_partition_info": expected_user_partition_info, "user_partitions": expected_user_partitions, "actions": { - "can_manage_tags": True, "can_copy": True, "can_duplicate": True, "can_move": True, @@ -224,8 +220,6 @@ def test_children_content(self): "can_delete": True, "can_manage_tags": True, }, - "user_partition_info": expected_user_partition_info, - "user_partitions": expected_user_partitions, "validation_messages": [], "render_error": "", }, diff --git a/lms/djangoapps/courseware/tests/test_views.py b/lms/djangoapps/courseware/tests/test_views.py index 5f8bd1c49f18..ed0b4bf5b7e0 100644 --- a/lms/djangoapps/courseware/tests/test_views.py +++ b/lms/djangoapps/courseware/tests/test_views.py @@ -79,6 +79,7 @@ from lms.djangoapps.courseware.testutils import RenderXBlockTestMixin from lms.djangoapps.courseware.toggles import ( COURSEWARE_MICROFRONTEND_DISCUSSION_SIDEBAR_OPEN_DISABLED, + COURSEWARE_MICROFRONTEND_SIDEBAR_DISABLED, COURSEWARE_MICROFRONTEND_SEARCH_ENABLED, COURSEWARE_OPTIMIZED_RENDER_XBLOCK, )