[tests] test_domain import dummy_domain inside test class

This commit is contained in:
Maxime Alves LIRMM 2022-02-10 11:59:40 +01:00
parent 97fee8ca96
commit c3153921f7
1 changed files with 2 additions and 1 deletions

View File

@ -1,8 +1,9 @@
from halfapi.testing.test_domain import TestDomain
from dummy_domain import __name__, __routers__
from pprint import pprint
class TestDummyDomain(TestDomain):
from .dummy_domain import __name__, __routers__
DOMAIN = __name__
ROUTERS = __routers__