Skip to content

Commit

Permalink
Update test_path_domain.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Nov 13, 2023
1 parent 611ed2f commit bc261aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_path_domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def make_cookie(
domain: Optional[str] = None,
) -> None:
session_data = {"session": data, "created": int(time.time())}
C: cookies.SimpleCookie[str] = cookies.SimpleCookie()
C = cookies.SimpleCookie()
value = json.dumps(session_data)
C["AIOHTTP_SESSION"] = value
C["AIOHTTP_SESSION"]["path"] = path
Expand Down

0 comments on commit bc261aa

Please sign in to comment.