From fc981dc7d952d803ecad4e697e0c169a174c6021 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 11 Feb 2020 16:40:04 +0000 Subject: [PATCH] Bug 19014: (QA follow-up) Update test for AddReserve change Signed-off-by: Martin Renvoize --- t/db_dependent/Circulation.t | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/t/db_dependent/Circulation.t b/t/db_dependent/Circulation.t index 41ed041b9f..38502941dd 100755 --- a/t/db_dependent/Circulation.t +++ b/t/db_dependent/Circulation.t @@ -628,9 +628,19 @@ subtest "CanBookBeRenewed tests" => sub { is( $error, 'auto_too_soon', 'Bug 14101: Cannot renew, renewal is automatic and premature, "No renewal before" = undef (returned code is auto_too_soon)' ); AddReserve( - $branch, $reserving_borrowernumber, $biblio->biblionumber, - $bibitems, $priority, $resdate, $expdate, $notes, - 'a title', $item_4->itemnumber, $found + { + branchcode => $branch, + borrowernumber => $reserving_borrowernumber, + biblionumber => $biblio->biblionumber, + itemnumber => $bibitems, + priority => $priority, + reservation_date => $resdate, + expiration_date => $expdate, + notes => $notes, + title => 'a title', + itemnumber => $item_4->itemnumber, + found => $found + } ); ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber ); is( $renewokay, 0, 'Still should not be able to renew' ); -- 2.20.1