From: Yuval Kogman Date: Wed, 19 Jul 2006 12:37:54 +0000 (+0000) Subject: Correct Auth/Session test X-Git-Tag: v0.08~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f96a2155158fedacd0e6fe336c0a0baf0fbbfc21;p=catagits%2FCatalyst-Plugin-Authentication.git Correct Auth/Session test --- diff --git a/t/lib/AuthSessionTestApp.pm b/t/lib/AuthSessionTestApp.pm index 4bc8de4..66f2480 100644 --- a/t/lib/AuthSessionTestApp.pm +++ b/t/lib/AuthSessionTestApp.pm @@ -46,7 +46,7 @@ sub elk : Local { sub fluffy_bunny : Local { my ( $self, $c ) = @_; - ok( !$c->sessionid, "no session ID was restored"); + ok( !$c->session_is_valid, "no session ID was restored"); ok( !$c->user, "no user was restored"); }