From 041a208a9da26b29658511cf3043549d8f9817ab Mon Sep 17 00:00:00 2001
From: Indranil Das Gupta <indradg@gmail.com>
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) <alex.arnaud@biblibre.com>
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 1c94b73..72d49f1 100755
--- a/t/db_dependent/Reserves.t
+++ b/t/db_dependent/Reserves.t
@@ -112,7 +112,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