View | Details | Raw Unified | Return to bug 31908
Collapse All | Expand All

(-)a/t/db_dependent/Auth.t (-1 / +1 lines)
Lines 613-618 subtest 'checkauth & check_cookie_auth' => sub { Link Here
613
613
614
    # Logging out!
614
    # Logging out!
615
    $cgi->param('logout.x', 1);
615
    $cgi->param('logout.x', 1);
616
    $cgi->delete( 'userid', 'password' );
616
    ( $userid, $cookie, $sessionID, $flags ) = C4::Auth::checkauth($cgi, 0, {catalogue => 1});
617
    ( $userid, $cookie, $sessionID, $flags ) = C4::Auth::checkauth($cgi, 0, {catalogue => 1});
617
    is( $sessionID, undef );
618
    is( $sessionID, undef );
618
    is( $ENV{"HTTP_COOKIE"}, "CGISESSID=$first_sessionID", 'HTTP_COOKIE not unset' );
619
    is( $ENV{"HTTP_COOKIE"}, "CGISESSID=$first_sessionID", 'HTTP_COOKIE not unset' );
619
- 

Return to bug 31908