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