Bugzilla – Attachment 44649 Details for
Bug 15158
t/db_dependent/Circulation/GetTopIssues.t is failing in Jenkins
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 15158: Fix t/db_dependent/Circulation/GetTopIssues.t
Bug-15158-Fix-tdbdependentCirculationGetTopIssuest.patch (text/plain), 1021 bytes, created by
Tomás Cohen Arazi (tcohen)
on 2015-11-09 14:24:46 UTC
(
hide
)
Description:
Bug 15158: Fix t/db_dependent/Circulation/GetTopIssues.t
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2015-11-09 14:24:46 UTC
Size:
1021 bytes
patch
obsolete
>From f9402a1c95276813c4ccaa58888a8e6ea5a46236 Mon Sep 17 00:00:00 2001 >From: Julian Maurice <julian.maurice@biblibre.com> >Date: Mon, 9 Nov 2015 14:41:00 +0100 >Subject: [PATCH] Bug 15158: Fix t/db_dependent/Circulation/GetTopIssues.t > >create_biblio was returning biblioitemnumber instead of biblionumber. >This can cause problems when biblionumber and biblioitemnumber are not >the same. > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > t/db_dependent/Circulation/GetTopIssues.t | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/Circulation/GetTopIssues.t b/t/db_dependent/Circulation/GetTopIssues.t >index 891dbfb..1aac5b7 100644 >--- a/t/db_dependent/Circulation/GetTopIssues.t >+++ b/t/db_dependent/Circulation/GetTopIssues.t >@@ -107,5 +107,7 @@ sub create_biblio { > MARC::Field->new($it_tag, ' ', ' ', $it_subfield => $itemtype), > ); > >- return AddBiblio($record, ''); >+ my ($biblionumber) = AddBiblio($record, ''); >+ >+ return $biblionumber; > } >-- >2.6.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 15158
:
44647
|
44649
|
44657