X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-Session-State-Cookie.git;a=blobdiff_plain;f=t%2Fbasic.t;fp=t%2Fbasic.t;h=6d96eef2bf66b07e3f677db9f1db84b45506e84e;hp=60c33e480569284f1e7a72c6f03c2aa5b8efbbef;hb=f877359ebfc27bd0bc84ea6a8a7afab055ad377d;hpb=50dacea227c6f6f2c2304af24784beeb857b8eb6 diff --git a/t/basic.t b/t/basic.t index 60c33e4..6d96eef 100644 --- a/t/basic.t +++ b/t/basic.t @@ -78,7 +78,14 @@ $cxt->set_session_id($sessionid); ok( $cookies_called, "response cookie was set when sessionid changed" ); is_deeply( \%res_cookies, - { session => { value => $sessionid, httponly => 1, expires => 123 } }, + { + session => { + value => $sessionid, + httponly => 1, + expires => 123, + samesite => 'Lax', + }, + }, "cookie was set correctly" );