From fc9442545d98561661a4b119f1f2451ac6f476ee Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 7 Apr 2023 21:46:24 +0000 Subject: [PATCH] Bug 33447: Adjust tests Signed-off-by: emlam --- t/db_dependent/Koha/Biblio.t | 3 +++ 1 file changed, 3 insertions(+) diff --git a/t/db_dependent/Koha/Biblio.t b/t/db_dependent/Koha/Biblio.t index af3a424bc9..e3957a7a67 100755 --- a/t/db_dependent/Koha/Biblio.t +++ b/t/db_dependent/Koha/Biblio.t @@ -24,6 +24,7 @@ use C4::Biblio qw( AddBiblio ModBiblio ModBiblioMarc ); use C4::Circulation qw( AddIssue AddReturn ); use Koha::Database; +use Koha::Cache::Memory::Lite; use Koha::Caches; use Koha::Acquisition::Orders; use Koha::AuthorisedValueCategories; @@ -435,6 +436,8 @@ subtest 'pickup_locations' => sub { } foreach my $cbranch ('ItemHomeLibrary','PatronLibrary') { + my $cache = Koha::Cache::Memory::Lite->get_instance(); + $cache->flush(); foreach my $biblio ($biblio1, $biblio2) { foreach my $patron ($patron1, $patron8) { _doTest($cbranch, $biblio, $patron, $results); -- 2.34.1