From f7270a231847c9f2f63eac166a1f379c1f075247 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 21 Jan 2022 10:50:59 +0000 Subject: [PATCH] Bug 29914: (QA follow-up) Remove warn on timeout The warn is: The value of the system preference 'timeout' is not correct, defaulting to 600. Caused by previous test. Signed-off-by: Marcel de Rooy Signed-off-by: Nick Clemens --- t/db_dependent/Auth.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/db_dependent/Auth.t b/t/db_dependent/Auth.t index bc5f67fc92..79bf960f43 100755 --- a/t/db_dependent/Auth.t +++ b/t/db_dependent/Auth.t @@ -444,6 +444,8 @@ subtest '_timeout_syspref' => sub { subtest 'check_cookie_auth' => sub { plan tests => 1; + t::lib::Mocks::mock_preference('timeout', "1d"); # back to default + my $patron = $builder->build_object({ class => 'Koha::Patrons', value => { flags => 1 } }); # Mock a CGI object with real userid param @@ -453,7 +455,6 @@ subtest 'check_cookie_auth' => sub { sub { my $var = shift; if ( $var eq 'userid' ) { return $patron->userid; } - elsif ( $var eq 'timeout' ) { return 3600; } } ); $cgi->mock('multi_param', sub {return q{}} ); -- 2.30.2