From 53c60eb2ac55e05ae636cb9cd42751cb4b44ee6a Mon Sep 17 00:00:00 2001 From: XnpioChV Date: Tue, 29 Oct 2024 13:58:17 -0500 Subject: [PATCH] style: Nits on the code --- .../content_libraries/tests/test_content_libraries.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openedx/core/djangoapps/content_libraries/tests/test_content_libraries.py b/openedx/core/djangoapps/content_libraries/tests/test_content_libraries.py index 9e439a974e7..49175ef152f 100644 --- a/openedx/core/djangoapps/content_libraries/tests/test_content_libraries.py +++ b/openedx/core/djangoapps/content_libraries/tests/test_content_libraries.py @@ -398,7 +398,7 @@ def test_revert_on_collection(self): collection_usage_key = library_api.get_library_collection_usage_key(library_key, collection_key) collection = library_api.get_library_collection_from_usage_key(collection_usage_key) - # The collection must have one entity + # The collection must have one entity assert collection.entities.count() == 1 # Revert library to published version @@ -408,7 +408,6 @@ def test_revert_on_collection(self): collection = library_api.get_library_collection_from_usage_key(collection_usage_key) assert collection.entities.count() == 0 - def test_library_blocks_studio_view(self): """ Test the happy path of working with an HTML XBlock in a the studio_view of a content library.