[testing] fix check_routes of test_domain
This commit is contained in:
parent
5d5ffdfb7c
commit
776cc8c85e
|
@ -66,9 +66,11 @@ class TestDomain(TestCase):
|
|||
return result_d
|
||||
|
||||
def check_routes(self):
|
||||
halfapi = HalfAPI({
|
||||
'domain': {
|
||||
'dummy_domain': {
|
||||
halfapi_conf = {
|
||||
'domain': {}
|
||||
}
|
||||
|
||||
halfapi_conf['domain'][self.DOMAIN] = {
|
||||
'name': self.DOMAIN,
|
||||
'router': self.ROUTERS,
|
||||
'prefix': False,
|
||||
|
@ -77,8 +79,8 @@ class TestDomain(TestCase):
|
|||
'test': True
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
halfapi = HalfAPI(halfapi_conf)
|
||||
|
||||
client = TestClient(halfapi.application)
|
||||
r = client.get('/')
|
||||
|
|
Loading…
Reference in New Issue