From dc06ad6b2204bd3af6b7e2c0571101d1b991786a Mon Sep 17 00:00:00 2001 From: Jannat Patel Date: Thu, 29 Jan 2026 20:40:35 +0530 Subject: [PATCH] fix: removed tags methods --- lms/lms/test_utils.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lms/lms/test_utils.py b/lms/lms/test_utils.py index a8e683b8..247f9066 100644 --- a/lms/lms/test_utils.py +++ b/lms/lms/test_utils.py @@ -16,7 +16,6 @@ from lms.lms.utils import ( get_lessons, get_membership, get_reviews, - get_tags, has_course_instructor_role, has_evaluator_role, has_moderator_role, @@ -98,11 +97,6 @@ class TestLMSUtils(BaseTestUtils): all_lessons = frappe.db.count("Course Lesson", {"course": self.course.name}) self.assertEqual(len(lessons), all_lessons) - def test_get_tags(self): - tags = get_tags(self.course.name) - expected_tags = ["Frappe", "Learning", "Utility"] - self.assertEqual(set(tags), set(expected_tags)) - def test_get_instructors(self): instructors = get_instructors("LMS Course", self.course.name) self.assertEqual(len(instructors), len(self.course.instructors))