From 0509d6673bf370422b77eff6243c3f2caa9ae6d1 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 7 Nov 2016 15:24:34 -0300 Subject: [PATCH] Bug 17573: Remove itemtype-related warnings from DecreaseLoanHighHolds.t To test: - Run: $ prove t/db_dependent/DecreaseLoanHighHolds.t => FAIL: Lots of warnings - Apply the patch - Run: $ prove t/db_dependent/DecreaseLoanHighHolds.t => SUCCESS: All green and no warnings. - Sign off :-D Sponsored-by: ByWater Solutions --- t/db_dependent/DecreaseLoanHighHolds.t | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/t/db_dependent/DecreaseLoanHighHolds.t b/t/db_dependent/DecreaseLoanHighHolds.t index 3eb8e6b..ca14fb4 100755 --- a/t/db_dependent/DecreaseLoanHighHolds.t +++ b/t/db_dependent/DecreaseLoanHighHolds.t @@ -41,8 +41,9 @@ $dbh->do('DELETE FROM issuingrules'); $dbh->do('DELETE FROM borrowers'); $dbh->do('DELETE FROM items'); -my $library = $builder->build({source => 'Branch'}); -my $category = $builder->build({source => 'Category'}); +my $library = $builder->build( { source => 'Branch' } ); +my $category = $builder->build( { source => 'Category' } ); +my $itemtype = $builder->build( { source => 'Itemtype' } )->{itemtype}; # Set userenv C4::Context->_new_userenv('xxx'); @@ -67,7 +68,8 @@ for my $i ( 1 .. 10 ) { { biblionumber => $biblio->id(), biblioitemnumber => $biblioitem->id(), - barcode => $i + barcode => $i, + itype => $itemtype } )->store(); push( @items, $item ); -- 2.10.2