From df133457af61700dbd77650f3bbe863ddb924f43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B4mulo=20Penido?= Date: Fri, 16 Feb 2024 16:43:37 -0300 Subject: [PATCH] docs: fix comment --- .../rest_api/v1/tests/test_objecttag_export_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/core/djangoapps/content_tagging/rest_api/v1/tests/test_objecttag_export_helpers.py b/openedx/core/djangoapps/content_tagging/rest_api/v1/tests/test_objecttag_export_helpers.py index e1deccd035a1..a784cf4a031d 100644 --- a/openedx/core/djangoapps/content_tagging/rest_api/v1/tests/test_objecttag_export_helpers.py +++ b/openedx/core/djangoapps/content_tagging/rest_api/v1/tests/test_objecttag_export_helpers.py @@ -222,7 +222,7 @@ def setUp(self): ) assert self.expected_library_tagged_xblock.children is not None # type guard - # ToDo: Check the order of the children + # The children are sorted by the key self.expected_library_tagged_xblock.children.append(tagged_library_html) self.expected_library_tagged_xblock.children.append(tagged_problem) self.expected_library_tagged_xblock.children.append(untagged_problem)