Bugzilla – Attachment 52301 Details for
Bug 16717
Remove hardcoded category from Holds.t
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16717: Remove hardcoded category from Holds.t
Bug-16717-Remove-hardcoded-category-from-Holdst.patch (text/plain), 1.46 KB, created by
Marcel de Rooy
on 2016-06-13 07:56:25 UTC
(
hide
)
Description:
Bug 16717: Remove hardcoded category from Holds.t
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2016-06-13 07:56:25 UTC
Size:
1.46 KB
patch
obsolete
>From 46ad159b1721c6d38833277f3442de3f780fdb0f Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Fri, 27 May 2016 13:48:10 +0200 >Subject: [PATCH] Bug 16717: Remove hardcoded category from Holds.t >Content-Type: text/plain; charset=utf-8 > >There is actually no need to use the hardcoded patron category S in >this test. > >Test plan: >Run t/db_dependent/Holds.t. > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > t/db_dependent/Holds.t | 8 ++------ > 1 file changed, 2 insertions(+), 6 deletions(-) > >diff --git a/t/db_dependent/Holds.t b/t/db_dependent/Holds.t >index 7e490e3..b368481 100755 >--- a/t/db_dependent/Holds.t >+++ b/t/db_dependent/Holds.t >@@ -34,11 +34,7 @@ my $dbh = C4::Context->dbh; > my $branch_1 = $builder->build({ source => 'Branch' })->{ branchcode }; > my $branch_2 = $builder->build({ source => 'Branch' })->{ branchcode }; > >-# This test assumes we have a category S. This statement helps. >-$builder->build({ >- source => 'Category', >- value => { categorycode => 'S', category_type => 'S' }, >-}); >+my $category = $builder->build({ source => 'Category' })->{categorycode}; > > my $borrowers_count = 5; > >@@ -64,7 +60,7 @@ foreach (1..$borrowers_count) { > my $borrowernumber = AddMember( > firstname => 'my firstname', > surname => 'my surname ' . $_, >- categorycode => 'S', >+ categorycode => $category, > branchcode => $branch_1, > ); > push @borrowernumbers, $borrowernumber; >-- >1.7.10.4
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 16717
:
52301
|
52304
|
52363
|
52364