Skip to content

Commit

Permalink
test: add logout arguments to fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
sebulibah committed Mar 2, 2023
1 parent f908453 commit f4c8760
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/satosa/test_routing.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ class TestModuleRouter:
def create_router(self):
backends = []
for provider in BACKEND_NAMES:
backends.append(TestBackend(None, {"attributes": {}}, None, None, provider))
backends.append(TestBackend(None, None, {"attributes": {}}, None, None, provider))

frontends = []
for receiver in FRONTEND_NAMES:
frontends.append(TestFrontend(None, {"attributes": {}}, None, None, receiver))
frontends.append(TestFrontend(None, None, {"attributes": {}}, None, None, receiver))

request_micro_service_name = "RequestService"
response_micro_service_name = "ResponseService"
Expand Down

0 comments on commit f4c8760

Please sign in to comment.