Skip to content

Commit

Permalink
test(core): set proper malformed cookie instead of empty in server
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardobridge committed Jul 13, 2023
1 parent 9dcda2a commit 80a22b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/test/core/targets/simple.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ function route(server) {
method: 'GET',
path: '/malformed_cookie',
handler: function (request, h) {
return h.response().header('Set-Cookie', '').code(200);
return h.response().header('Set-Cookie', 'malformed').code(200);
}
}
]);
Expand Down

0 comments on commit 80a22b7

Please sign in to comment.