From a627771d251bc33d135565f296a702761660291a Mon Sep 17 00:00:00 2001
From: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Date: Wed, 2 Oct 2019 11:20:27 +0100
Subject: [PATCH] Bug 23382: (follow-up) Ensure tests pass on Wednesdays

---
 t/db_dependent/Circulation.t | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/t/db_dependent/Circulation.t b/t/db_dependent/Circulation.t
index 09b2d24a53..63df70599f 100755
--- a/t/db_dependent/Circulation.t
+++ b/t/db_dependent/Circulation.t
@@ -3213,6 +3213,7 @@ subtest 'Incremented fee tests' => sub {
 
     $dt_to       = dt_from_string()->add( hours => 4 );
     $dt_to_renew = dt_from_string()->add( hours => 6 );
+    $calendar->delete_holiday( weekday => 3);
 
     $issue =
       AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
@@ -3279,7 +3280,7 @@ subtest 'CanBookBeIssued & RentalFeesCheckoutConfirmation' => sub {
 
     $itemtype->rentalcharge('1.000000')->store;
     ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, $dt_due, undef, undef, undef );
-    is_deeply( $needsconfirmation, { RENTALCHARGE => '1' }, 'Item needs rentalcharge confirmation to be issued' );
+    is_deeply( $needsconfirmation, { RENTALCHARGE => '1.00' }, 'Item needs rentalcharge confirmation to be issued' );
     $itemtype->rentalcharge('0')->store;
     $itemtype->rentalcharge_daily('1.000000')->store;
     ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, $dt_due, undef, undef, undef );
-- 
2.20.1