Skip to content

Commit a8a82a8

Browse files
committed
chores: Format tests
1 parent 9654f40 commit a8a82a8

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

tests/emailpassword/test_multitenancy.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@
2525
create_reset_password_token,
2626
reset_password_using_token,
2727
)
28-
from supertokens_python.recipe.emailpassword.interfaces import SignUpOkResult, SignInOkResult, CreateResetPasswordOkResult
28+
from supertokens_python.recipe.emailpassword.interfaces import (
29+
SignUpOkResult,
30+
SignInOkResult,
31+
CreateResetPasswordOkResult,
32+
)
2933
from supertokens_python.recipe.multitenancy.interfaces import TenantConfig
3034

3135
from tests.utils import get_st_init_args
@@ -48,7 +52,7 @@ async def test_multitenancy_in_user_roles():
4852
multitenancy.init(),
4953
]
5054
)
51-
init(**args) # type: ignore
55+
init(**args) # type: ignore
5256
setup_multitenancy_feature()
5357

5458
await create_or_update_tenant("t1", TenantConfig(email_password_enabled=True))

tests/thirdparty/test_multitenancy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
async def test_multitenancy_functions():
4141
# test that different roles can be assigned for the same user for each tenant
4242
args = get_st_init_args([session.init(), thirdparty.init(), multitenancy.init()])
43-
init(**args) # type: ignore
43+
init(**args) # type: ignore
4444
setup_multitenancy_feature()
4545

4646
await create_or_update_tenant("t1", TenantConfig(third_party_enabled=True))

0 commit comments

Comments
 (0)