Skip to content

Commit 627c204

Browse files
authored
remove SameSite (#261)
1 parent c3da445 commit 627c204

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/tunit_core/tunit_response.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ block:
4545
var
4646
response = initResponse(version, code, body = body)
4747

48-
response.setCookie("username", "flywind")
48+
response.setCookie("username", "xxx")
4949
response.setCookie("password", "root")
5050
doAssert response.getHeader("set-cookie").join("; ") ==
51-
"username=flywind; SameSite=Lax; password=root; SameSite=Lax"
51+
"username=xxx; password=root"

0 commit comments

Comments
 (0)