Skip to content

Commit

Permalink
chores: Format
Browse files Browse the repository at this point in the history
  • Loading branch information
KShivendu committed Sep 19, 2023
1 parent 5c375a6 commit c2bd2fc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,9 @@ async def test_cookie_samesite_with_ec2_public_url():
api_base_path="/",
),
framework="fastapi",
recipe_list=[session.init(get_token_transfer_method=lambda _, __, ___: "cookie")]
recipe_list=[
session.init(get_token_transfer_method=lambda _, __, ___: "cookie")
],
)

# domain name isn't provided so browser decides to use the same host
Expand All @@ -770,7 +772,9 @@ async def test_cookie_samesite_with_ec2_public_url():
api_base_path="/",
),
framework="fastapi",
recipe_list=[session.init(get_token_transfer_method=lambda _, __, ___: "cookie")],
recipe_list=[
session.init(get_token_transfer_method=lambda _, __, ___: "cookie")
],
)

assert SessionRecipe.get_instance().config.cookie_domain is None
Expand Down

0 comments on commit c2bd2fc

Please sign in to comment.