Bugzilla – Attachment 44647 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), 965 bytes, created by
Julian Maurice
on 2015-11-09 13:47:52 UTC
(
hide
)
Description:
Bug 15158: Fix t/db_dependent/Circulation/GetTopIssues.t
Filename:
MIME Type:
Creator:
Julian Maurice
Created:
2015-11-09 13:47:52 UTC
Size:
965 bytes
patch
obsolete
>From 1874b8fb68d24ab90157bce6debd6f1b5f4d4883 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. >--- > 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; > } >-- >1.9.1
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