Переглянути джерело

chore: remove duplicate test helper classes from api root directory (#25024)

tags/1.8.1
-LAN- 2 місяці тому
джерело
коміт
7bcaa513fa
Аккаунт користувача з таким Email не знайдено
2 змінених файлів з 0 додано та 22 видалено
  1. 0
    11
      api/child_class.py
  2. 0
    11
      api/lazy_load_class.py

+ 0
- 11
api/child_class.py Переглянути файл

@@ -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}"

+ 0
- 11
api/lazy_load_class.py Переглянути файл

@@ -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

Завантаження…
Відмінити
Зберегти