@@ -, +, @@ before prove t/db_dependent/Circulation/CalcDateDue.t t/Calendar.t # Failed test 'Exception holiday is not a closed day test' # at t/Calendar.t line 159. # got: '1' # expected: '0' # Looks like you failed 1 test of 38. --- t/Calendar.t | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) --- a/t/Calendar.t +++ a/t/Calendar.t @@ -85,7 +85,8 @@ fixtures_ok [ ], "add fixtures"; my $cache = Koha::Caches->get_instance(); -$cache->clear_from_cache( 'single_holidays') ; +$cache->clear_from_cache( 'single_holidays' ) ; +$cache->clear_from_cache( 'exception_holidays' ) ; # 'MPL' branch is arbitrary, is not used at all but is needed for initialization my $cal = Koha::Calendar->new( branchcode => 'MPL' ); @@ -330,3 +331,7 @@ my $holiday_for_another_branch = DateTime->new( is ( $cal->is_holiday($holiday_for_another_branch), 1, 'Holiday defined for CPL should be defined as an holiday' ); } +END { + $cache->clear_from_cache( 'single_holidays' ) ; + $cache->clear_from_cache( 'exception_holidays' ) ; +}; --