From 3d3304c65c6f6a46e67052792a272314a29e0ba7 Mon Sep 17 00:00:00 2001 From: Lendemor Date: Wed, 15 Jan 2025 14:45:27 +0100 Subject: [PATCH] more fixes --- tests/integration/test_client_storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_client_storage.py b/tests/integration/test_client_storage.py index 9f846d093..9273de70f 100644 --- a/tests/integration/test_client_storage.py +++ b/tests/integration/test_client_storage.py @@ -37,7 +37,7 @@ def ClientSide(): # cookies with custom settings c3: str = rx.Cookie(max_age=2) # expires after 2 second - c4: rx.Cookie = rx.Cookie(same_site="strict") + c4: str = rx.Cookie(same_site="strict") c5: str = rx.Cookie(path="/foo/") # only accessible on `/foo/` c6: str = rx.Cookie(name="c6") c7: str = rx.Cookie("c7 default")