From 78ccd43781057421e8108d925bc69e34d84ccbb3 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, ''); 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.9.1