From b6c65ed1ccf32c025392db5e27e90fadbf81e28e Mon Sep 17 00:00:00 2001 From: Indranil Das Gupta Date: Wed, 17 Jun 2015 09:58:33 +0530 Subject: [PATCH] (fix typo) AddBiblio call in Reserves.t Fix for the typo, it read : my ($broken_id, $title, $bibitemnum) = AddBiblio($miniaturist, ''); it should read : my ($broken_id, $title, $bibitemnum) = AddBiblio($broken, ''); Signed-off-by: Alex Arnaud (Biblibre) http://bugs.koha-community.org/show_bug.cgi?id=14155 --- t/db_dependent/Reserves.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/db_dependent/Reserves.t b/t/db_dependent/Reserves.t index 94be823..635fdce 100755 --- a/t/db_dependent/Reserves.t +++ b/t/db_dependent/Reserves.t @@ -110,7 +110,7 @@ else { MARC::Field->new('245', '', '', a => $title), ); } -my ($broken_id, $title, $bibitemnum) = AddBiblio($miniaturist, ''); +my ($broken_id, $title, $bibitemnum) = AddBiblio($broken, ''); # Create a helper item instance for testing my ($item_bibnum, $item_bibitemnum, $itemnumber) = AddItem({ homebranch => 'CPL', holdingbranch => 'CPL' } , $bibnum); -- 1.7.10.4