Skip to content

Commit

Permalink
fixed cookie tests as go 1.16 changed how default SameSite property s…
Browse files Browse the repository at this point in the history
…erializes, aka it doesn't for default (#43)
  • Loading branch information
unai-programmfabrik committed Feb 24, 2021
1 parent 84a5078 commit a741df4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/cookies/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"max_age": 86400,
"secure": false,
"http_only": false,
"same_site": 1
"same_site": 2
}
],
"body": {}
Expand All @@ -36,7 +36,7 @@
"header": {
"Set-Cookie": [
"sess=my_sess",
"dummy=whatever; Path=/mypath; Domain=mydomain; Expires=Wed, 10 Nov 2021 10:00:00 GMT; Max-Age=86400; SameSite"
"dummy=whatever; Path=/mypath; Domain=mydomain; Expires=Wed, 10 Nov 2021 10:00:00 GMT; Max-Age=86400; SameSite=Lax"
]
},
"cookie": {
Expand All @@ -53,7 +53,7 @@
"max_age": 86400,
"secure": false,
"http_only": false,
"same_site": 1
"same_site": 2
}
},
"body": {}
Expand Down

0 comments on commit a741df4

Please sign in to comment.