From 7bcaa513fa2cc007b6c619b569a2ef090174ceb9 Mon Sep 17 00:00:00 2001 From: -LAN- Date: Wed, 3 Sep 2025 08:56:00 +0800 Subject: [PATCH] chore: remove duplicate test helper classes from api root directory (#25024) --- api/child_class.py | 11 ----------- api/lazy_load_class.py | 11 ----------- 2 files changed, 22 deletions(-) delete mode 100644 api/child_class.py delete mode 100644 api/lazy_load_class.py diff --git a/api/child_class.py b/api/child_class.py deleted file mode 100644 index b210607b92..0000000000 --- a/api/child_class.py +++ /dev/null @@ -1,11 +0,0 @@ -from tests.integration_tests.utils.parent_class import ParentClass - - -class ChildClass(ParentClass): - """Test child class for module import helper tests""" - - def __init__(self, name): - super().__init__(name) - - def get_name(self): - return f"Child: {self.name}" diff --git a/api/lazy_load_class.py b/api/lazy_load_class.py deleted file mode 100644 index dd3c2a16e8..0000000000 --- a/api/lazy_load_class.py +++ /dev/null @@ -1,11 +0,0 @@ -from tests.integration_tests.utils.parent_class import ParentClass - - -class LazyLoadChildClass(ParentClass): - """Test lazy load child class for module import helper tests""" - - def __init__(self, name): - super().__init__(name) - - def get_name(self): - return self.name