From 95150d4c92b6b478929c650ab7defe68a6e6dafa Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 15 Aug 2016 09:26:16 +0100 Subject: [PATCH] Bug 17124: Fix tests in DecreaseLoanHighHolds.t One test of DecreaseLoanHighHolds.t does not pass, A hashref representing a patron has a 'borrower' key defined, instead of 'borrowernumber'. Test plan: prove t/db_dependent/DecreaseLoanHighHolds.t must return green --- t/db_dependent/DecreaseLoanHighHolds.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/db_dependent/DecreaseLoanHighHolds.t b/t/db_dependent/DecreaseLoanHighHolds.t index ff56928..3eb8e6b 100755 --- a/t/db_dependent/DecreaseLoanHighHolds.t +++ b/t/db_dependent/DecreaseLoanHighHolds.t @@ -108,7 +108,7 @@ C4::Context->set_preference( 'decreaseLoanHighHoldsControl', 'static' ); C4::Context->set_preference( 'decreaseLoanHighHoldsIgnoreStatuses', 'damaged,itemlost,notforloan,withdrawn' ); my $item_hr = { itemnumber => $item->id, biblionumber => $biblio->id, homebranch => $library->{branchcode}, holdingbranch => $library->{branchcode}, barcode => $item->barcode }; -my $patron_hr = { borrower => $patron->id, branchcode => $library->{branchcode} }; +my $patron_hr = { borrowernumber => $patron->id, branchcode => $library->{branchcode} }; my $data = C4::Circulation::checkHighHolds( $item_hr, $patron_hr ); is( $data->{exceeded}, 1, "Static mode should exceed threshold" ); -- 2.8.1