[Koha-patches] [PATCH] add calls to clear_syspref_cache()

Galen Charlton galen.charlton at liblime.com
Thu Dec 11 16:48:51 CET 2008


temporary until mutator for sysprefs created
---
 t/lib/KohaTest/Search/NoZebra.pm |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/t/lib/KohaTest/Search/NoZebra.pm b/t/lib/KohaTest/Search/NoZebra.pm
index 3b1aee1..ade916a 100644
--- a/t/lib/KohaTest/Search/NoZebra.pm
+++ b/t/lib/KohaTest/Search/NoZebra.pm
@@ -31,6 +31,7 @@ sub startup_50_init_nozebra : Test( startup => 3 ) {
     my $dbh = C4::Context->dbh;
     $dbh->do("UPDATE systempreferences SET value=1 WHERE variable='NoZebra'");
     $dbh->do("UPDATE systempreferences SET value=0 WHERE variable in ('QueryFuzzy','QueryWeightFields','QueryStemming')");
+    C4::Context->clear_syspref_cache();
     $using_nozebra = C4::Context->preference('NoZebra');
     ok($using_nozebra, "switched to NoZebra");
 
@@ -218,6 +219,7 @@ sub shutdown_50_init_nozebra : Test( shutdown => 3 ) {
     my $dbh = C4::Context->dbh;
     $dbh->do("UPDATE systempreferences SET value=0 WHERE variable='NoZebra'");
     $dbh->do("UPDATE systempreferences SET value=1 WHERE variable in ('QueryFuzzy','QueryWeightFields','QueryStemming')");
+    C4::Context->clear_syspref_cache();
     $using_nozebra = C4::Context->preference('NoZebra');
     ok(!$using_nozebra, "switched to Zebra");
 
-- 
1.5.5.GIT




More information about the Koha-patches mailing list