[ADD] __init__.py to test …

This commit is contained in:
Peter Pfeufer 2023-11-03 20:00:07 +01:00
parent a747951d19
commit 21e80f6961
No known key found for this signature in database
GPG Key ID: 6051D2C6AD4EBC27
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,3 @@
"""
Initializing our tests
"""

View File

@ -9,8 +9,10 @@ from django.contrib.auth.models import Group, User
from django.test import TestCase from django.test import TestCase
# Alliance Auth # Alliance Auth
from allianceauth.framework.api.user import get_sentinel_user, \ from allianceauth.framework.api.user import (
get_sentinel_user,
get_main_character_name_from_user get_main_character_name_from_user
)
from allianceauth.tests.auth_utils import AuthUtils from allianceauth.tests.auth_utils import AuthUtils