Bug 15009: QA follow-up
[koha.git] / t / db_dependent / Auth_with_cas.t
index b67ba1e..ab21233 100755 (executable)
@@ -20,6 +20,7 @@ use Modern::Perl;
 use Test::More tests => 4;
 use CGI;
 
+use t::lib::Mocks;
 use C4::Context;
 
 BEGIN {
@@ -38,8 +39,9 @@ my $dbh = C4::Context->dbh;
 $dbh->{ AutoCommit } = 0;
 $dbh->{ RaiseError } = 1;
 
-C4::Context->set_preference('OPACBaseURL','http://localhost');
-C4::Context->set_preference('staffClientBaseURL','localhost:8080');
+C4::Context->disable_syspref_cache();
+t::lib::Mocks::mock_preference('OPACBaseURL','http://localhost');
+t::lib::Mocks::mock_preference('staffClientBaseURL','localhost:8080');
 
 my $opac_base_url = C4::Context->preference('OpacBaseURL');
 my $staff_base_url = C4::Context->preference('staffClientBaseURL');